Discussion:
Event after painting?
(too old to reply)
Mike King
2008-06-18 18:06:24 UTC
Permalink
How can one run code just after painting has completed?

function MyForm::OnPaint ( ... )

base::Paint(...)
// run some custom painting ops

end function
Mike King
2008-06-18 18:14:36 UTC
Permalink
What I'm trying to do is control the brightness of the Form by applying some
post-processing to the pixels. Has anyone done this or know how to do it?
JohnC
2008-06-21 14:41:05 UTC
Permalink
Seems to me that you would have a problem here.
Once you post-processed the pixels, you would have to do a re-paint of the
form which would again call your function.
Post by Mike King
What I'm trying to do is control the brightness of the Form by applying
some post-processing to the pixels. Has anyone done this or know how to
do it?
Loading...