Fading an image in?

Darc

Well-known member
Joined
Apr 18, 2003
Messages
89
I have one image that I want to slowly draw over another (slowly increase its opaqueness) but I have absolutely no idea how to do it. Any help (preferably in VB .NET, but I can probably make heads or tails of C# or C++ .NET)?
 
The Opacity property is bound to forms.
You could use a borderless second form, which you dock the second image on. Then u use a timer to increase the opacity until
desired effect is achieved!
 
I got it (had to use a ColorMatrix and imageAttributes) could someone tell me how this ColorMatrix works? Im just going by some tutorials to set opacity
 
Back
Top