Tagged Questions
2
votes
4answers
1k views
How do I set a minimum window size in wxWidgets?
This is the hierarchy of widgets I've got:
Frame > wxBoxSizer > wxPanel > wxBoxSizer > wxFlexGridSizer (2 columns, 9 rows), with assorted form fields and buttons inside.
The first BoxSizer is to ...
1
vote
1answer
78 views
Something like the wx.MultiChoiceDialog in a panel instead of a dialog
I'd like to use the list (with checkboxes next to each item) that is contained in the wxMultiChoice dialog in a panel. Is that possible?
1
vote
0answers
161 views
wxWidgets ComboBox center on selected item
I have a requirement to center a wx.ComboBox on the selected item when opened.
Basically, I want to do this (http://stackoverflow.com/questions/592911/wpf-listbox-centering-selected-item), but using ...
0
votes
1answer
12 views
Get Selected Files directories with wxThumbnailCtrl?
How can I get the directories of the selected items in a wxThumbCtrl in wxpython?
EDIT:
There is http://wxpython.org/docs/api/wx.lib.agw.thumbnailctrl.Thumb-class.html#GetFileName
However how can I ...
0
votes
1answer
47 views
embedding grid in panel in wxpython
What is the proper way to embedd grid (wx.grid.Grid) into the panel? I tried the following code and got bizarre frame:
wx.Frame.__init__(self,wx.GetApp().TopWindow,size=(600,800),title='Material ...
0
votes
1answer
200 views
create multiple classes with wxFormBuilder for python
I'm using wxFormBuilder to write a series of GUI applications. So far it has worked wonderfully, but the documentation on their homepage is a broken link.
What I'd like to do is combine my programs ...