WPF:重新设计窗口?
有谁知道是否可以在 wpf 中重新设置窗口的样式。或者更好的是任何教程或示例?
基本上我想更改最小化和最大化按钮 - 哦,关闭按钮稍微大一点......
我有表达混合......
这可能吗?
我在 infragistics 示例应用程序中看到了一些示例,它们有一些漂亮的表单,据我所知,它不使用任何自定义 wpf 控件...
任何想法都非常感激
does anyone know if its possible to restyle a window in wpf. Or even better any tutorials or samples?
Basically i would like to change the minimize and maximize buttons - oh and the close button to be slightly bigger....
I have expression blend....
Is this possible?
I saw some samples in infragistics sample apps which have some great looking forms and as far as i can tell it doesn't use any custom wpf controls...
Any ideas really appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
快速解决方案是在窗口上设置 WindowStyle="None",然后创建自己的最小化和关闭按钮。连接新按钮的事件/命令来操作窗口。
As quick solution would be to set the WindowStyle="None" on your window, then create your own minimize and close buttons. Hook up the event/command for the new buttons to manipulate the window.