Tagged Questions

0
votes
1answer
2 views

wxwidgets resize sizers after hiding/showing child controls

Hello, 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 …
0
votes
1answer
79 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
91 views

wxPython sizer wxGridSizer’s parent class method is strangely inaccessible

Hello, I am having an issue with wxPython toolkit. I am using a wx.GridSizer object to place a grid displaying some status info. I need to update this grid, and so I came up with a few different …
0
votes
1answer
147 views

WxPython: FoldPanelBar not really folding.

I've written the following code using FoldPanelBar: import wx import wx.lib.agw.foldpanelbar as fpb class frame(wx.Frame): def __init__(self,*args,**kwargs): …
0
votes
3answers
358 views

How do I expand a wx.sizer of a wx.panel when the panel is expanded inside another wx.sizer?

I have a wx.Panel that has a GridBagSizer associated with it. This panel is placed inside another Sizer (BoxSizer), whose add has the expand flag - meaning that the panel takes up the full width of …