你能有一个只在子行上有复选框的 GtkTreeView 吗?
我想要一个 GtkTreeView
,其父级没有复选框,而所有子级都有复选框。我尝试过(和看到过)的所有内容都在每一行上都放置了复选框。
I'd like to have a GtkTreeView
that has parents with no checkbox, and all of the children have checkboxes. Everything I have tried (and seen) puts checkboxes on every row.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来最简单的方法是将复选框放在它自己的 gtk.TreeViewColumn 中,并有一列数据指示它是否可见。可见列号被传递给 gtk.TreeViewColumn。查看树视图 -> Gtk+ 附带的 Tree Store 演示了解更多详细信息。
Looks like the easiest way to do this is to put the checkbox in its own gtk.TreeViewColumn and have a column of data indicating whether it is visible or not. The visible column number is passed to gtk.TreeViewColumn. See the Tree View -> Tree Store demo that comes with Gtk+ for more details.