向 pyqt 列表添加标题
我想向 pyqt 中的列表添加标题和索引,QT 的列表(qlistwidget、qlistview、qtablewidget、qtreeview)实际上并不重要
简而言之..我想要类似于 pyqt 演示中的旋转框委托示例的东西... 但我想要一个字符串,而不是列标题中的索引...
希望这个想法足够清楚
提前致谢
i want to add a headers and index to a list in pyqt , it's really not important what list of QT (qlistwidget , qlistview , qtablewidget, qtreeview)
in short .. i want something like the spin box delegate example in the pyqt demo ...
but instead of the index in the column headers i want a strings ...
hope the idea is clear enough
thanx in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
QTableWidget 可能是您的最佳选择 - 它使用
setHorizontalHeaderLabels()
和setVerticalHeaderLabels()
来让您控制两个轴。当然,如果您想完全控制标题的内容和格式,那么您可以使用 .setHorizontalHeaderItem() 和 .setVerticalHeaderItem() 方法为每个标题定义一个 QTableWidgetItem...
请参阅 官方文档了解完整详细信息。
QTableWidget is likely your best choice - it uses
setHorizontalHeaderLabels()
andsetVerticalHeaderLabels()
to let you control both axes.Of course, if you want full control over the contents and formatting of the headers, then you could use the .setHorizontalHeaderItem() and .setVerticalHeaderItem() methods to define a QTableWidgetItem for each header...
See the official documentation for full details.