How can I create a Win32 window like Sticky Note in Windows 7 which has no border but has drop down shadow effect?

I have tried to create a Win32 window without borders (remove ~WS_BORDER), but the drop down effect shadow is gone.

Any idea?

Best regards, Zach@Shine

link|improve this question

71% accept rate
I know what a "drop-down menu" is, and I am familiar with the "drop shadow". But "drop-down shadow"? – Andreas Rejbrand May 7 '10 at 22:59
feedback

2 Answers

up vote 2 down vote accepted

Apply the CS_DROPSHADOW window class (You can apply with SetClassLongPtr/GCL_STYLE at runtime iirc)

link|improve this answer
If you look carefully, you can find there is a little difference between the shadow by CS_DROPSHADOW and the shadow of Sticky Notes. – Zach May 10 '10 at 9:55
feedback

I think you could do this in C# WinForms without too much trouble. You can set the form's border style to none, do some transparency mask tricks for both graphics and hit-tests.

I've done transparency & hit-test masks, and I've done no-border form windows, but I haven't done both together.

link|improve this answer
How can I do this in VC++? – Zach May 7 '10 at 8:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.