将组件添加到子窗口小部件后调整 QDialog 的大小

发布于 2024-12-10 19:00:49 字数 287 浏览 0 评论 0原文

我对 QT 有点陌生,但必须处理现有代码。案例如下: 我有一个扩展 QDialog 的类。构造函数设置一个 QGridLayout,然后向其中添加其他三个小部件。其中一个小部件是包含 QGroupBox 的 QScrollArea。这个 QGroupBox 有一个 QVBoxLayout,我在运行时添加一个小部件列表。在显示滚动条之前,滚动区域的大小应该增长直到达到给定的限制,以便仅在对话框增长得太高时才使用它们。我发现当滚动区域的 sizeHint 更新时,外部布局的 sizeHint 不会更新。我如何刷新它,或者是否有更好的方法来调整父对话框的大小?

I'm a bit new to QT but have to work on existing code. Here's the case:
I have a class extending QDialog. the constructor sets a QGridLayout then adding three other widgets to it. One of the widgets is a QScrollArea containing a QGroupBox. this QGroupBox has a QVBoxLayout and there I'm adding a list of widgets at runtime. The size of the scroll area should grow until a given limit is reached before showing the scrollbars so that they are only used when the dialog would grow too high. I've found that the sizeHint of the outer layout doesn't update when the sizeHint of the scroll area updates. How can I refresh this, or is there a better way to resize the parent dialog?

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

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

发布评论

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

评论(1

深海不蓝 2024-12-17 19:00:49

使用 QScrollArea 的 widgetResizing 属性怎么样?它应该尝试调整视图大小以避免使用滚动条。

What about using widgetResizable property of QScrollArea? It should try to resize view to avoid using scorllbars.

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