Files
Phoenix/docs/sphinx/rest_substitutions/snippets/python/converted/wx.StaticBox.1.py
2016-05-18 16:38:18 -07: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...