A sized scrolled panel.
Controls added to it will automatically be added to its sizer.
wx.lib.scrolledpanel.ScrolledPanel
, wx.lib.sized_controls.SizedParent
self in the following sample is a |
|
Called automatically by wx, should not be called from user code. |
A sized scrolled panel.
Controls added to it will automatically be added to its sizer.
self in the following sample is a wx.SizedScrolledPanel
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, should not be called from user code.
child – child (window or another sizer) to be added to sizer.