PyQt4:根据 QMainWindow 的大小设置 QGridLayout 的大小
我正在用 Python 编写一个 Qt 小应用程序。我创建了 QMainWindow,它有一个 QGridLayout。在每个网格中我添加 QTextBrowser Widget。我希望网格的左侧不大于窗口的 25%。所以我将有两个 QTextBrowser:一个是窗口宽度的 25%,另一个是窗口宽度的 75%。我该怎么做呢?谢谢!
I'm writing a little Qt application with Python. I've created QMainWindow, which have a QGridLayout. In each grid I'm adding QTextBrowser Widget. I want left side of my grid to be not bigger than 25% of window. So I'll have two QTextBrowsers: one is 25% of window's width, and another is 75% of window's width. How can I do it? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过使用 setStretch() 为每个单元格提供拉伸来指定相对宽度。它们的尺寸将与给定的拉伸成比例。这是一个简单的示例,使右侧小部件比左侧小部件大 3 倍。
但是,请记住,默认情况下小部件具有最小尺寸。所以他们可以收缩到低于这个水平。如果您也想更改该行为,请考虑根据您的喜好设置最小尺寸。
You can specify relative width by giving each cell a stretch with setStretch(). They will get sizes proportional to the given stretches. Here is a simple example that makes the right widget 3 times greater than the left widget.
But, bear in mind that widgets have minimum sizes by default. So they can shrink below that. If you want to change that behavior also, consider setting minimum sizes to your liking.