用python实现复选框树_如何在Python中使用复选框创建树形视图

I've been using Tkinter and Tix to write a small program.

I'm at a point where I need a tree view with checkboxes (checkbuttons) so I can select items from the tree view.

Is there an easy way to do this?

I've been looking at ttk.Treeview () and it looks easy to get the tree view but is there a way to insert a checkbutton to the view?

A simple code snippet would be really appreciated.

I'm not limited to ttk. Anything will do; as long as I have an example or good docs I can make it work

解决方案

import Tix

class View(object):

def __init__(self, root):

self.root = root

self.makeCheckList()

def makeCheckList(self):

self.cl = Tix.CheckList(self.root, browsecmd=self.selectItem)

self.cl.pack()

self.cl.hlist.add("CL1", text="checklist1")

self.cl.hlist.add("CL1.Item1", text="subitem1")

self.cl.hlist.add("CL2", text="checklist2")

self.cl.hlist.add("CL2.Item1", text="subitem1")

self.cl.setstatus("CL2", "on")

self.cl.setstatus("CL2.Item1", "on")

self.cl.setstatus("CL1", "off")

self.cl.setstatus("CL1.Item1", "off")

self.cl.autosetmode()

def selectItem(self, item):

print item, self.cl.getstatus(item)

def main():

root = Tix.Tk()

view = View(root)

root.update()

root.mainloop()

if __name__ == '__main__':

main()

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值