Files
Phoenix/docs/sphinx/rest_substitutions/snippets/python/converted/StaticBox.1.py
2012-04-10 03:16:37 +00:00

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...