如何通过样式表自定义QTableWidget?
我正在尝试通过样式表自定义 QTableWidget
并且我仅限于 此处。
如何更改表格水平标题的间距、标题标签的大小、列之间的间距等?
I'm trying to customize a QTableWidget
through stylesheet and I'm only limited to the items descibed here.
How do I change the spacing in the horizontal header of the table, the size of its header label, the spaces between the columns, et al?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用 QAbstractItemDelegate 来控制 QTableWidget 中项目的显示。
根据代表的解释:
来自 QTableWidget::setItemDelegate():
举个例子:像素器。
You should use QAbstractItemDelegate to control display of items in QTableWidget.
From explanation of delegates:
From QTableWidget::setItemDelegate():
And for an example : pixelator.