Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find a full reference of wxpython?

Sorry the question may sound stupid, but I do need one. Right now I'm just adding a wx.TextCtrl in my GUI program, and I want to know what styles can I add (such as style=wx.TE_MULTILINE|wx.TE_PROCESS_ENTER), so I googled and end up reading this page: http://www.wxpython.org/docs/api/wx.TextCtrl-class.html. It must be the official one, but I wonder why there's NOT a list of available styles in this page. If the official reference doesn't provide enough info, where should I look at?

Although I finally found what I want in wxPython in Action ebook, just want to know if there's a BIG reference which includes almost all stuff. Thanks a lot!

like image 652
Shane Avatar asked Dec 28 '22 08:12

Shane


1 Answers

I find Andrea Gavana's (creator of wx.lib.agw ) documentation more comprehensive then the offical wxpython docs.

http://xoomer.virgilio.it/infinity77/wxPython/APIMain.html

Heres the page for the textCtrl which shows all the styles that are available.

like image 84
volting Avatar answered Jan 14 '23 19:01

volting