单独的 QTreeWidgetItem 缩进
是否可以对 QTreeWidget 中的项目进行单独缩进?
具体来说,我有一列包含文本、图标和其中一些复选框。没有复选框的项目会向左移动,因此图标和文本的缩进不会与其他项目内联。如果可能的话,可以用隐藏的复选框来修复吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试在
QTreeWidget::itemWidget()
返回的小部件上使用QWidget::setContentMargins()
。You can try using the
QWidget::setContentMargins()
on the widget returned byQTreeWidget::itemWidget()
.也许使用委托会给你一个很好且正确的实现。您将有机会重新实现 Paint() 和 sizeHint() 方法,因此,选择绘制 QTreeWidgetItem 的方式...
更多文档:http://doc.trolltech.com/4.6/model-view-delegate.html
示例:http://doc.trolltech.com/4.6/itemviews-pixelator.html
希望有帮助有点!
Maybe the use of Delegates will give you a nice and proper implementation. You'll have the opportunity to re-implement the paint() and sizeHint() methods, and therefore, choose the way your QTreeWidgetItem are being drawn...
More documentation here : http://doc.trolltech.com/4.6/model-view-delegate.html
An example : http://doc.trolltech.com/4.6/itemviews-pixelator.html
Hope it helps a bit !