mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-21 19:27:10 +01:00
10 lines
307 B
Python
10 lines
307 B
Python
|
|
def CreateControls(self):
|
|
|
|
panel = wx.Panel(self)
|
|
box = wx.StaticBox(panel, wx.ID_ANY, "StaticBox")
|
|
|
|
text = wx.StaticText(box, wx.ID_ANY, "This window is a child of the staticbox")
|
|
|
|
# Other code...
|