Anthony Leotta

Results 2 comments of Anthony Leotta

What is the plan for implementing complex control specific API's? Below is my first attempt at a treectrl. ``` @mount.register(wx.TreeCtrl) def treectrl(element, parent): instance = wx.TreeCtrl(parent, style=wx.LC_REPORT) instance.self_managed = True...

``` if 'root' in props: value = props.get('root') root = instance.AddRoot(value) ``` Perhaps I should add a 'tree' rather than a 'root'? This tree format could be nested or flattened...