我可以在调整大小时锁定 MFC 对话框的宽度或高度吗?

发布于 2024-10-21 08:31:37 字数 48 浏览 0 评论 0原文

MFC中有没有一种方法可以在一个方向上锁定对话框的大小(仅限制宽度或仅限制高度)?

Is there a way to lock a dialog box's size in one direction (restrict only width or only height) in MFC?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

七分※倦醒 2024-10-28 08:31:37

您需要重写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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文