dthor
dthor

Reputation: 1867

List of wxWidgets widgets with images?

I'm trying to find some widgets for my wxPython program. I'm not looking for anything specific, but I'd like to just browse a Big List with all widgets.

Something like:

wx.ComboBox          <image of ComboBox>
wx.Gauge             <image of Gauge>
wx.StaticText        <image of StaticText>
etc.

Does anyone know of such a website?

The wxWidgets docs class list (http://docs.wxwidgets.org/3.0/page_class_cat.html) has the images I'm looking for, but they're all on different pages and a pain to look through.

Upvotes: 2

Views: 1033

Answers (1)

Mike Driscoll
Mike Driscoll

Reputation: 33071

I would recommend downloading the wxPython demo package. It not only shows almost all the widgets, but it also demonstrates how they work with code examples. You will find the demo on the wxPython's Download page:

Once you have that, you can browse the widgets by category or use the handy search control to find the widget(s) you are looking for.

Upvotes: 2

Related Questions