用 C# 定制形状的 Aero Windows?喜欢这些!
如何制作像这样的不规则形状的航空窗?
看右下角!
这个程序也能做到这一点。
这也行啊! >_<甚至更多...
How do I make an irregular shaped Aero window like this one?
Look in the lower right corner!
This program also does it.
This also does it! >_< Even more...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我最近使用了这个解决方案,它对我有用:
http://devintelligence.com/2007/10/shape-windows-in-wpf/
我必须创建一个包含 WPF 表单的单独程序集,因为我的项目的其余部分使用 WinForms。从那里开始就非常简单了:使用具有透明度的背景图像并将表单设置为透明。
尽管您可能需要将
WindowStyle="None"
更改为其他内容或其他你将没有关闭按钮等。
I recently used this solution and it worked for me:
http://devintelligence.com/2007/10/shaped-windows-in-wpf/
I had to create a separate assembly containing the WPF form because the rest of my project uses WinForms. From there it's quite straight forward: Use a background image with transparency and set the form to transparent.
Though you might need to change
WindowStyle="None"
to something other or elseyou'll have no close button etc.