如何停止 Windows::Forms::Dialog 向一个方向调整大小?
我有一个对话框,我可以通过编程方式更改其高度。现在的问题是,如果用户想查看更多信息,我想允许用户水平扩展它。
如果允许用户调整对话框大小,如何阻止对话框垂直调整大小?
I have a dialog box which I programatically alter the height of. The problem now is that I'd like to allow the user to expand it horizontally if they want to see more information.
How can I stop the dialog from resizeing vertically if I allow the user to resize it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将MinimumSize 设置为当前大小,将MaximumSize 设置为最大大小,高度与MinimumSize 中的相等,宽度=800(或其他一些非常大的数字)。
You can set MinimumSize to current size and MaximumSize to, well, maximum size, with height equal as in MinimumSize, and width=800 (or some other really big number).