QTreeWidget 展开标志

发布于 2024-08-29 01:43:31 字数 82 浏览 3 评论 0原文

即使项目没有任何子项目,如何使 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半世蒼涼 2024-09-05 01:43:31

QTreeWidgetItems 具有 属性 childIndicatorPolicy。允许的值为:

  • QTreeWidgetItem::ShowIndicator
  • QTreeWidgetItem::DontShowIndicator
  • QTreeWidgetItem::DontShowIndicatorWhenChildless

您需要第一个。

theItem.setChildIndicatorPolicy(QTreeWidgetItem.ShowIndicator)

QTreeWidgetItems have the property childIndicatorPolicy. The allowed values are:

  • QTreeWidgetItem::ShowIndicator
  • QTreeWidgetItem::DontShowIndicator
  • QTreeWidgetItem::DontShowIndicatorWhenChildless

You want the first one.

theItem.setChildIndicatorPolicy(QTreeWidgetItem.ShowIndicator)
自演自醉 2024-09-05 01:43:31

回答我为其他人提出的第二部分问题。

我在 QTreeView 中查找绘图函数,发现如下:

void QTreeView::drawBranches ( QPainter * painter, const QRect & rect, const QModelIndex & index ) 

使用此函数,您可以在每个项目的左侧绘制任何您想要的内容。

还有另一个很好的选择来处理这个问题 - 使用 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:

void QTreeView::drawBranches ( QPainter * painter, const QRect & rect, const QModelIndex & index ) 

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文