Files
Phoenix/docs/sphinx/rest_substitutions/snippets/python/converted/wx.aui.AuiManager.1.py
2016-11-11 20:16:35 -08:00

7 lines
195 B
Python

text1 = wx.TextCtrl(self)
text2 = wx.TextCtrl(self)
self.mgr.AddPane(text1, wx.LEFT, "Pane Caption")
self.mgr.AddPane(text2, wx.BOTTOM, "Pane Caption")
self.mgr.Update()