Re: borderless image on the desktop
- Posted by sergelli Jul 23, 2012
- 1380 views
ghaberek said...
Assuming you're on Win32Lib, use the style WM_POPUP to create a completely borderless window, then use something like setTransparentColor() and setBackgroundColor() to make the window "transparent". Finally, use either a static Bitmap control, or BitBlt() your image onto the window during a Paint event.
-Greg
Thanks Greg
The bitmap plotted onto the window shows the selected color with transparency, perfectly.
I used the same background color for the bitmap and for the window {0,0,255}
But the back color of window, is not transparent.
How do I make a transparent window?