How to create a tree control with child nodes having check boxes? I want the check boxes to be preferably on the left side of the nodes.
dinilkarun 8 Posting Whiz in Training
Recommended Answers
Jump to PostAlthough I don't use wxPython, you should be able to use a dictionary to clean up the code. Something like this. Again I don't use this toolkit so it may require tuning.
import wx class MyFrame(wx.Frame): def __init__(self, parent, id, title): wx.Frame.__init__(self, parent, id, title, wx.DefaultPosition, wx.Size(450, …
All 4 Replies
Fuse 17 Light Poster
dinilkarun 8 Posting Whiz in Training
Fuse 17 Light Poster
woooee 814 Nearly a Posting Maven
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.