tID = wxNewId()
self.treeMap = {}
self.tree = wxTreeCtrl(splitter, tID)
+ #self.tree.SetBackgroundColour(wxNamedColour("Pink"))
root = self.tree.AddRoot("Overview")
firstChild = None
for item in _treeList:
#---------------------------------------------------------------------------
def main():
+ try:
+ demoPath = os.path.split(__file__)[0]
+ os.chdir(demoPath)
+ except:
+ pass
app = MyApp(0)
app.MainLoop()