mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-31 16:10:07 +01:00
7 lines
195 B
Python
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()
|