The code below is a simplified version of my task bar icon class, I haven’t checked the GetKeyCode() value to see if it’s a ctrl as the key press events aren’t being fired. Should I be binding key presses to somewhere else?
class TBI(wx.TaskBarIcon):
TBMENU_CTRLCLICK= wx.NewId()
def __init__(self,frame):
wx.TaskBarIcon.__init__(self)
self.frame=frame
self.ctrl_down=False
self.Bind(wx.EVT_KEY_DOWN, self.OnKeyDown)
self.Bind(wx.EVT_KEY_UP, self.OnKeyUp)
self.Bind(wx.EVT_MENU, self.OnCtrlClick, id=self.TBMENU_CTRLCLICK)
def CreatePopupMenu(self):
menu= wx.Menu()
if self.ctrl_down:
menu.Append(self.TBMENU_CTRLCLICK, "Ctrl Click")
menu.AppendSeparator()
menu.Append(wx.ID_EXIT, "Exit")
return menu
def OnKeyDown(self,event):
self.ctrl_down=True
event.Skip()
def OnKeyUp(self,event):
self.ctrl_down=False
event.Skip()
Use
wx.GetKeyStateas so:Right click the taskbar icon and then try with ctrl held down to see it in action.