QTreeWidget 展开标志
即使项目没有任何子项目,如何使 QTreeWidget 中的可扩展标志始终可见?以及如何绘制其他东西而不是默认符号?
提前致谢, 哔叽
How to make expandable sign in QTreeWidget always visible even when item doest have any subitems? And how to draw something else instead of default sign?
Thanks in advance,
Serge
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
QTreeWidgetItems 具有 属性 childIndicatorPolicy。允许的值为:
您需要第一个。
QTreeWidgetItems have the property childIndicatorPolicy. The allowed values are:
You want the first one.
回答我为其他人提出的第二部分问题。
我在 QTreeView 中查找绘图函数,发现如下:
使用此函数,您可以在每个项目的左侧绘制任何您想要的内容。
还有另一个很好的选择来处理这个问题 - 使用 QTreeView 样式表:
http ://qt.nokia.com/doc/4.6/stylesheet-examples.html#customizing-qtreeview
Answering on my second part of question for others.
I looked for drawing functions in QTreeView and found following:
With this function you can draw whatever you want at the left side of each item.
And another good choice to hanlde this - use Style Sheets for QTreeView:
http://qt.nokia.com/doc/4.6/stylesheet-examples.html#customizing-qtreeview