wx.Choice that has too many options to fit on screen

Folks

Is there a way to display all the options in an over-long wx.Choice widgets. I was thinking something like the program menu on windows maybe.

···

---
Nigel W. Moriarty

____________________________________________________________________________________
Choose the right car based on your needs. Check out Yahoo! Autos new Car Finder tool.
http://autos.yahoo.com/carfinder/

Nigel W. Moriarty wrote:

Folks

Is there a way to display all the options in an over-long wx.Choice
widgets. I was thinking something like the program menu on windows
maybe.

The native widget on wxGTK does something like that, but the other platforms don't. You can create your own wx.Choice-like widget using the wx.combo.ComboCtrl, which will allow you to draw the drop-down yourself however you want, but it would probably be better to just not have so many choices. For example you can filter the choices based on the values of other widgets, etc.

···

--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!