The wx.dataview.TreeListCtrl is not intended to be a replacement for wx.gizmos.TreeListCtrl, (the gizmos classes haven’t been ported yet,) but instead it is a simplification layer on top of wx.dataview.DataViewCtrl. Consequently, the API and behaviors are not compatible. For the right-click event you probably want to use wx.dataview.EVT_DATAVIEW_CONTEXT_MENU, however you should also review the docs for the DataViewCtrl and related classes.
Robin
···
On Wednesday, October 25, 2017 at 1:20:18 AM UTC-7, David Wende wrote:
I have trying to use some old code with the newer Phoenix 4.0.0.b2.
Have a problem with emitting an event when doing a LEFT/RIGHT mouse button click or release.
I have tried the following but no event seems to be emitted (at least, control is not passed to self.OnTest).