禁用窗口最大化/最小化
如何使用 Windows API 禁用窗口的最大化和/或最小化功能?最大化/最小化框需要变灰并禁用,双击标题栏、拖动到屏幕顶部等也需要不起作用。
How do I disable the maximizing and/or minimizing capability of a window with the Windows API? The maximize/minimize boxes need to be greyed out and disabled, and double clicking the title bar, dragging to the top of the screen, etc needs to not work also.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以调用SetWindowLong/SetWindowLongPtr 来修改窗口的样式。
有关详细信息,请参阅:
http:// /msdn.microsoft.com/en-us/library/ms633591%28v=VS.85%29.aspx
或 http://msdn.microsoft.com/en-us/library/ms644898%28VS.85%29.aspx
那么,你该怎么办意思是“拖动到屏幕顶部”?
You can call SetWindowLong/SetWindowLongPtr to modify a window's styles.
For furthur detail, please refer to:
http://msdn.microsoft.com/en-us/library/ms633591%28v=VS.85%29.aspx
or http://msdn.microsoft.com/en-us/library/ms644898%28VS.85%29.aspx
Then, what do u mean about 'draging to the top of the screen'?