A sized panel.
Controls added to it will automatically be added to its sizer.
__init__ |
self in the following sample is a wx.SizedPanel instance. |
AddChild |
Called automatically by wx, do not call it from user code. |
SizedPanel
(wx.Panel, SizedParent)¶A sized panel.
Controls added to it will automatically be added to its sizer.
__init__
(self, *args, **kwargs)¶self in the following sample is a wx.SizedPanel
instance.
Sample usage:
self.SetSizerType("horizontal")
b1 = wx.Button(self, wx.ID_ANY)
t1 = wx.TextCtrl(self, -1)
t1.SetSizerProps(expand=True)
AddChild
(self, child)¶Called automatically by wx, do not call it from user code.