在调整窗口或拆分器大小时更改表格列宽度
考虑有一个 QTablWidget 和一个 QTextEdit。它们都处于水平 QSplitte 中。让 QTable 小部件有 2 列。
问题是在通过用鼠标移动分隔符进行调整大小操作时调整表格列的宽度。是否有任何选项可以使列与表同步调整大小?
谢谢。
Consider there is a QTablWidget and a QTextEdit. Both of them are in a horisontal QSplitte. Let the QTable widget has 2 columns.
The problem is to resize the table columns' width as you do resize operation by moving the splitter with mouse. Are there any options to may colums to be resized synchornosly with the table?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这段代码将 ui->tableWidget 的所有列设置为相等宽度并让它自动改变。
看看文档中的 QHeaderView 描述,您可以使用此 API 对表列执行几乎任何您能想象到的操作。
遗憾的是,如果您需要关系列宽度不相等,则无法设置任何拉伸因子或其他东西,但您仍然可以在标题的 geometriesChanged 触发时重新实现 sizeHint() 或调整部分大小。
This code sets all columns of ui->tableWidget to equal width and let it change automatically.
And take a look on QHeaderView description in docs, you can do almost anything you can imagine with table columns with this API.
Sad, but you can't set any stretch factor or smth., if you need relational column widths not to be equal, but you still can reimplement sizeHint() or resize sections when header's geometriesChanged fires.