documentation

How do I find out all the available events, such as EVT_MENU,
EVT_BUTTON, etc…? I can’t seem to locate them in
documentation.

Thanks

···

No virus found in this outgoing message.

Checked by AVG Free Edition.

Version: 7.5.441 / Virus Database: 268.17.33/678 - Release Date: 2/9/2007 4:06 PM

Hi Lee,

For a LIST of wx.events:

···

#---------------------------------
import wx
s = "EVT"
A=[z for z in dir(wx) if z.startswith(s)]
for a in A:
  print a
#---------------------------------

For complete events documentation, I think that is only available at wxWidgets docs.

AB

-----Mensagem original-----
De: Lee Connell [mailto:lee.a.connell@gmail.com]
Enviada: dom 11-02-2007 1:28
Para: wxPython-users@lists.wxwidgets.org
Assunto: [wxPython-users] documentation

How do I find out all the available events, such as EVT_MENU, EVT_BUTTON,
etc.? I can't seem to locate them in documentation.

Thanks

--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.441 / Virus Database: 268.17.33/678 - Release Date: 2/9/2007
4:06 PM