如何设置QWidget宽度?

发布于 2024-09-03 16:42:50 字数 288 浏览 2 评论 0原文

如何设置QWidget宽度?我知道 setGeometry(QRect& rect) 函数可以做到这一点,但在这种情况下,我应该使用 geometry() 函数来获取 QWidget 的前参数code>,那么我应该增加宽度并使用 setGeometry(..)。有没有直接的方法,比如:

QWidget aa;
aa.setWidth(165); //something like this?

How to set QWidget width? I know setGeometry(QRect& rect) function to do that, but in that case I should use geometry() function to get former parameters of my QWidget, then I should increment the width and use setGeometry(..). Is there any direct way to that, say:

QWidget aa;
aa.setWidth(165); //something like this?

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

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

发布评论

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

评论(4

情未る 2024-09-10 16:42:50

resize() 可能更好用。

用法示例:

widget->resize(165, widget->height());

resize() might be better to use.

Example usage:

widget->resize(165, widget->height());
演多会厌 2024-09-10 16:42:50
widget->resize(165, widget->height());
widget->resize(165, widget->height());
执手闯天涯 2024-09-10 16:42:50

QWidget 参考。

尝试检查所有可用的“yyysize”方法< em>(因为 Qt 小部件有不同的大小策略,您可能需要一些特殊的东西)。

基本上,是的,它是 resize(...)

QWidget reference.

Try examining all available "yyysize" methods (because there are different sizing policies for Qt widgets and you might need something special).

Basically, yes, it's resize(...).

絕版丫頭 2024-09-10 16:42:50

如果宽度之后不会改变,可以使用 setFixedWidth

widget->setFixedWidth(165);

同样,要改变高度而不改变宽度,有 setFixedHeight

If the width won't change afterwards, you can use setFixedWidth:

widget->setFixedWidth(165);

Similarly, to change the height without changing the width, there is setFixedHeight.

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