将组件添加到子窗口小部件后调整 QDialog 的大小
我对 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 QScrollArea 的 widgetResizing 属性怎么样?它应该尝试调整视图大小以避免使用滚动条。
What about using widgetResizable property of QScrollArea? It should try to resize view to avoid using scorllbars.