 wx.lib.sized_controls.SizedPanel¶
 wx.lib.sized_controls.SizedPanel¶A sized panel.
Controls added to it will automatically be added to its sizer.
 Class Hierarchy¶
 Class Hierarchy¶ Inheritance diagram for class SizedPanel:
Inheritance diagram for class SizedPanel:
 Known Superclasses¶
 Known Superclasses¶wx.Panel, wx.lib.sized_controls.SizedParent
 Methods Summary¶
 Methods Summary¶| self in the following sample is a  | |
| Called automatically by wx, do not call it from user code. | 
 Class API¶
 Class API¶A sized panel.
Controls added to it will automatically be added to its sizer.
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)
Called automatically by wx, do not call it from user code.