如何在Win 7中使用DropDownShadow创建一个像粘滞便笺一样的窗口?
如何在Windows 7中创建一个像粘滞便笺一样没有边框但有下拉阴影效果的Win32窗口?
我尝试创建一个无边框的Win32窗口(删除~WS_BORDER),但是下拉效果阴影消失了。
有什么想法吗?
此致, 扎克@Shine
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
应用
CS_DROPSHADOW
窗口类(您可以在运行时 iirc 中使用SetClassLongPtr/GCL_STYLE
来申请)Apply the
CS_DROPSHADOW
window class (You can apply withSetClassLongPtr/GCL_STYLE
at runtime iirc)我认为您可以在 C# WinForms 中完成此操作,而不会有太多麻烦。您可以将表单的边框样式设置为无,对图形和命中测试执行一些透明蒙版技巧。
我已经完成了透明度和命中测试蒙版,并且我已经完成了无边框窗体窗口,但我还没有同时完成两者。
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.