| 58 | return headerSizer |
| 59 | |
| 60 | def initContent(self, panel): |
| 61 | contentSizer = wx.BoxSizer(wx.VERTICAL) |
| 62 | |
| 63 | self.m_checkBox2 = wx.CheckBox(panel, wx.ID_ANY, "Check Me!", wx.DefaultPosition, wx.DefaultSize, 0) |
| 64 | contentSizer.Add(self.m_checkBox2, 0, wx.ALL, 5) |
| 65 | |
| 66 | self.m_radioBtn2 = wx.RadioButton(panel, wx.ID_ANY, "RadioBtn", wx.DefaultPosition, wx.DefaultSize, 0) |
| 67 | contentSizer.Add(self.m_radioBtn2, 0, wx.ALL, 5) |
| 68 | |
| 69 | self.m_slider2 = wx.Slider(panel, wx.ID_ANY, 50, 0, 100, wx.DefaultPosition, wx.DefaultSize, wx.SL_HORIZONTAL) |
| 70 | contentSizer.Add(self.m_slider2, 0, wx.ALL, 5) |
| 71 | |
| 72 | self.m_gauge1 = wx.Gauge(panel, wx.ID_ANY, 100, wx.DefaultPosition, wx.DefaultSize, wx.GA_HORIZONTAL) |
| 73 | contentSizer.Add(self.m_gauge1, 0, wx.ALL, 5) |
| 74 | |
| 75 | self.m_textCtrl2 = wx.TextCtrl(panel, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0) |
| 76 | contentSizer.Add(self.m_textCtrl2, 0, wx.ALL, 5) |
| 77 | |
| 78 | return contentSizer |
| 79 | |
| 80 | def initFooter(self, panel): |
| 81 | footerSizer = wx.BoxSizer(wx.HORIZONTAL) |