How to access each element in the currently selected row from a ultimatelistctrl
when i right click on list i call a func
self.Bind(wx.EVT_LIST_ITEM_RIGHT_CLICK, self.OnSelected)
def OnSelected(self,event):
event.GetIndex()
then what to do ?
How to access each element in the currently selected row from a ultimatelistctrl
when i right click on list i call a func
self.Bind(wx.EVT_LIST_ITEM_RIGHT_CLICK, self.OnSelected)
def OnSelected(self,event):
event.GetIndex()
then what to do ?