WPF - 隐藏窗口的最小化按钮
在WPF中,如何隐藏窗口的最小化按钮(仅最小化,而不是最大化...)。
这个论坛中的代码几乎对我有用。该代码的行为是禁用最小化按钮。但是,怎么隐藏呢?
In WPF, how can I hide the minimize button (only the minimize, not also the maximize...) of a window.
The code in this forum almost work for me. The behavior of that code is that it's disabled the minimize button. But, how hide it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
禁用调整大小属性怎么样?
How about disabling the resize attribute?
我认为您必须隐藏默认窗口标题并绘制自己的标题栏。
例如: C# WPF 自定义标题栏教程
和使用自定义 Chrome 移动 WPF 窗口< /a>
I think you would have to hide the default window title and draw your own titlebar.
e.g.: C# WPF Custom Title Bar Tutorial
and Moving a WPF Window with Custom Chrome