wo finde ich alle wx.EVT_... als übersicht
Verfasst: Sonntag 4. Mai 2008, 20:24
hallo, wo finde ich alle vorhandenen wx.EVT_MOVE, wx.EVT_BUTTON usw für wxpython ?
mfg
mfg
Seit 2002 Diskussionen rund um die Programmiersprache Python
https://www.python-forum.de/
Hallo sechsrad!sechsrad hat geschrieben:hallo, wo finde ich alle vorhandenen wx.EVT_MOVE, wx.EVT_BUTTON usw für wxpython ?
Code: Alles auswählen
>>> import wx
>>> [ item for item in dir(wx) if item.startswith("EVT_") ]
['EVT_ACTIVATE', 'EVT_ACTIVATE_APP', 'EVT_BUTTON', ...]
>>>