The ws-ex-layered tag has no wiki summary.
4
votes
3answers
2k views
Win32: How to make drop shadow honor non-rectangular Layered window?
i've created a layered window by adding the the WS_EX_LAYERED extended style:
wndClass.ExStyle = wndClass.ExStyle | WS_EX_LAYERED;
Windows will use black as the chroma key color value. i'm going to ...
2
votes
2answers
1k views
Win32: How to draw outside my window?
Looking at a Windows tooltips class hint window, i see that it draws its drop-shadow outside the hint window's actual rectangle.
Using SpyXX - i can get the tooltip's window rect, and class styles:
...
1
vote
2answers
400 views
WS_EX_LAYERED window does not receive mouse events
I'm coding a custom background non rectangular window with buttons such as minimize and close in bitmaps.
Here is my code just for now
The problem is the custom window does not receive mouse messages ...
0
votes
1answer
464 views
alpha blended control on layered window in C#
i have a layered form with the WS_EX_LAYERED extended style set. i've created a child "EDIT" control using CreateWindowEx(...) API function; the control it's there but is not painted and nothing ...
0
votes
1answer
487 views
UpdateLayeredWindow, SIZE_RESTORED and GetClientRect problem
I have a layered window set up in my MFC application. I have set up my own derivation of CDialog to allow me to customise various parts of how the window is rendered. Everything works fine right up ...