使 QMainWindow 仅水平可调整大小 - 即宽度可调整大小,但高度是固定的
我可以制作一个带有网格布局的 QMainWindow 仅水平调整大小而不是垂直调整大小吗?
我希望它的垂直尺寸是容纳所有按钮/行编辑所需的最小值。
Can I make a QMainWindow with a grid layout resize only horizontally but not vertically?
I want its vertical size to be the minimum needed to hold all the buttons/line edits.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,你可以。由于 QMainWindow 继承自 QWidget,因此请使用 QWidget 大小策略 设置只允许在水平方向调整大小。
如果在 Qt Designer 中工作,请将垂直尺寸策略设置为固定,并将最小高度设置为您所需的高度。
在代码中:
请谨慎使用绝对固定大小,因为控件可能仍需要垂直增长(例如,用户在桌面上设置高 DPI 字体)。
Yes you can. As a QMainWindow inherits from QWidget, use the QWidget size policy settings to only allow resizing in the horizontal direction.
If working in Qt Designer, set the vertical size policy to be fixed, and the minimum height to be your desired height.
In code:
Be cautious using absolute fixed size as the controls might need to still grow vertically (e.g. the user sets a high DPI font on their desktop).
我在一本名为“C++ GUI Programming with Qt 4”的书中的一个示例中看到了另一种方式。他们做到了
I saw another way in one of the examples in a book called "C++ GUI Programming with Qt 4". They did it with
下面的代码工作正常,
但下面的代码
不起作用,因为错误的参数传递给了函数
setSizePolicy
。该函数有两种形式,一种需要QSizePolicy::Policy
,另一种需要QSizePolicy
,但QSizePolicy::Expanding
都不是QSizePolicy::Expanding
code>QSizePolicy 也不是QSizePolicy::Policy
。code below works fine
but code below
doesn't work because wrong parameter is passed to the function
setSizePolicy
. This function has two forms, one of which requiresQSizePolicy::Policy
and the other one requiresQSizePolicy
butQSizePolicy::Expanding
is neither aQSizePolicy
nor aQSizePolicy::Policy
.