如何在 Python 中更改 GtkTreeView 样式?
我有一个用 python 编写的应用程序,它在树视图中显示一些数据。 默认情况下,树视图是一个浮动的白色事件,带有小浮动三角形来扩展节点。
是否可以将此样式更改为更像 Windows 资源管理器树视图? 具体来说,我想要有垂直线来指示节点的起源。
如果这可能的话,会怎样做呢?
I have an app written in python that presents some of its data in a tree view. By default, the tree view is a floaty white affair with little floaty triangles to expand the nodes.
Is it possible to change this style to be more like a Windows explorer tree view? Specifically, I'd like to have vertical lines indicating parentage of the nodes.
If this is possible, how would it be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于链接箭头的行,gtk.TreeView 中有一个方法,请参见 http://library.gnome.org/devel/pygtk/stable/class-gtktreeview.html#method-gtktreeview--set-enable-tree-lines
For lines linking the arrows there is a method in gtk.TreeView for that, see http://library.gnome.org/devel/pygtk/stable/class-gtktreeview.html#method-gtktreeview--set-enable-tree-lines
您需要为此创建一个自定义的
CellRenderer
。 以下链接可能会有所帮助。http://www.pygtk.org/pygtk2tutorial/ch-TreeViewWidget.html
http://www.pygtk.org/pygtk2tutorial/sec-CellRenderers.html
you need to create a custom
CellRenderer
s for this. the below links might help.http://www.pygtk.org/pygtk2tutorial/ch-TreeViewWidget.html
http://www.pygtk.org/pygtk2tutorial/sec-CellRenderers.html