Tagged Questions
1
vote
2answers
179 views
wxPython: Can a wx.PyControl contain a wx.Sizer?
Can a wx.PyControl contain a wx.Sizer?
Note that what I am ultimately trying to do here (spinner with float values) is already answered in another question. I am particularly interested in layouting ...
1
vote
1answer
640 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
1answer
338 views
wxPython: wx.PyControl layout problem when it is a child of a wx.Panel
This is a continuation from this question:
wxPython: Can a wx.PyControl contain a wx.Sizer?
The main topic here is using a wx.Sizer inside a wx.PyControl. I had problems Fit()ting my CustomWidget ...