如何向具有一个中央小部件的 QMainWindow 添加滚动条?

发布于 2024-09-07 13:05:59 字数 146 浏览 6 评论 0原文

QMainWindow 仅包含一个大于 QMainWindow 尺寸的中央小部件时,如何向 QMainWindow 添加滚动条?

这样滚动条就可以用来查看这个中央小部件的不同部分。

How can I add a scroll bar to a QMainWindow, when this QMainWindow contains just one central widget, which is bigger than the QMainWindow size?

So that the scroll bar can be used to see different parts of this central widget.

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

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

发布评论

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

评论(2

陌路终见情 2024-09-14 13:05:59

QMainWindow 的中央小部件设置为 QScrollArea,然后将新 QScrollArea 的小部件设置为该小部件那是以前您的中央小部件。

请记住将 QScrollArea 的“widget ressized”属性设置为 true。

Set the central widget of your QMainWindow to a QScrollArea and then set the widget of that new QScrollArea to the widget that was previously your central widget.

Remember to set the "widget resizable" property of QScrollArea to true.

〗斷ホ乔殘χμё〖 2024-09-14 13:05:59

由于某种原因,如果子部件是带有布局的 QWidget,则它根本不会渲染。它只有在调用setWidgetResizable(true)后才起作用。

auto mainWidget = new QWidget();
auto scrollArea = new QScrollArea();
scrollArea->setWidget(mainWidget);
scrollArea->setWidgetResizable(true);
setCentralWidget(scrollArea);
resize(1470, 900);

QHBoxLayout* mainLayout = new QHBoxLayout(mainWidget);
...

For some reason the child widget would not render at all if it was a QWidget with a layout. It only worked after calling setWidgetResizable(true).

auto mainWidget = new QWidget();
auto scrollArea = new QScrollArea();
scrollArea->setWidget(mainWidget);
scrollArea->setWidgetResizable(true);
setCentralWidget(scrollArea);
resize(1470, 900);

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