Tagged Questions

4
votes
2answers
1k views

Why Does .Hide()ing and .Show()ing Panels in wxPython Result in the Sizer Changing the Layout?

As referenced in my previous question, I am trying to make something slightly wizard-like in function. I have settled on a single frame with a sizer added to it. I build panels for each of the ...
1
vote
1answer
162 views

If Possible, How Can One Set Either a Background Color on Cells within a Sizer or Gridlines for the Sizer?

I am flailing about with wxWidgets, in particular, the wx.Sizer in wxPython. I have read the documents, I have a copy of wXPython in Action before me, and have set aside the problem to work on other ...
1
vote
1answer
918 views

wxwidgets resize sizers after hiding/showing child controls

I have an wxWindow. Inside there I've got a wxBoxSize (Vertical). The sizer has 3 child controls. I want to be able to hide one of the three child controls, and have the sizer and its parent ...
1
vote
1answer
621 views

wxwidgets custom control size cannot be set.What am i missing out

I have a Custom control derived from wxControl,inside a dialog with a vertical sizer wxBoxSizer *topSizer = new wxBoxSizer( wxVERTICAL ); Knob* newKnob = new ...
0
votes
2answers
145 views

wxPython: how to lay one panel over another

This is about wxPython. I would like to have 2 Panels laying one over the other: PanelBG should be some sort of a "background", with its own GridBagSizer with subPanels, StaticTexts and so on; ...
0
votes
1answer
84 views

wxWidgets child sizer not expanding

I've got a very frustrating sizer problem. I have two wxFlexGridSizers (and a few other things) inside a vertical wxBoxSizer, like so: mMainSizer->Add(topsizer, wxSizerFlags(0).Expand()); ...
0
votes
1answer
205 views

Fitting a big grid (wxGrid) in a dialog (wxDialog)

Here is my layout: I have a sizer that contains a grid (with a proportion of 1) and a ok/cancel button bar The all thing is in a wxDialog Here it is: ||||||||||||||| | | | GRID ...
0
votes
0answers
99 views

Cannot specify the wxFrame size when sizer used in xrc

I'm using xrc to do the layout things in wxWidget,It's much easier than hard code. But I find some problem when specify the size of a top window. If the window have a sizer in it, the specified size ...
0
votes
3answers
670 views

Appropriate wx.Sizer(s) for the job?

I have a space in which I would like certain elements (represented here by A, B, D, and G) to each be in its own "corner" of the design. The corners ought to line up as if each of the four elements ...