I have an image (PNG file) that has an alpha channel that is set to 50% opaque. When I try to draw the image on a form that has the TransparencyKey set to white, and the backcolor set to white I expect the image to be drawn 50% see-through. However, it is being blended with the forms backcolor first and as a result it is completely opaque. Is there any way around this? I don't want to set the form's Opaque property as some images on the form need to be translucent and some need to be opaque.
|
|
|
|
|
|
|
I ended up using a layered window, using the WS_EX_LAYERED extended window style. |
||
|
|
|
|
I don't think you can. We have a splash screen where we did something like this, but we ended up capturing the screen and setting it as the background image of the form. Obviously this only seems to work, if the screen changes, the background of the form does not and things look weird. If you find a better way of doing it, I would love to know about it. Here is the code to capture the screen, just set the ScreenRect to the forms screen coordinates and call Process():
|
||
|
|
|
|
Nice. Don't forget that Vista has the Desktop Window Manager to create semi-transparent windows (aka Areo) http://msdn.microsoft.com/en-us/magazine/cc163435.aspx |
||
|
