我可以在调整大小时锁定 MFC 对话框的宽度或高度吗?
MFC中有没有一种方法可以在一个方向上锁定对话框的大小(仅限制宽度或仅限制高度)?
Is there a way to lock a dialog box's size in one direction (restrict only width or only height) in MFC?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要重写
OnGetMinMaxInfo
。在 OnInitDialog 中,您可以捕获当前高度,然后将其用于最小和最大高度。首先调用__super::OnGetMinMaxInfo,然后只更改高度成员。请注意,前几次调用 OnGetMinMaxInfo 时窗口可能不存在。这是有关 GetMinMaxInfo 的详细文章。
You need to override
OnGetMinMaxInfo
. In OnInitDialog you can capture the current height, and then use it for both minimum and maximum height. Call__super::OnGetMinMaxInfo
first and then only change the height members. Note that the window may not exist the first couple times OnGetMinMaxInfo are called.Here's a detailed article on GetMinMaxInfo.