mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-09 21:40:34 +01:00
7 lines
309 B
Python
7 lines
309 B
Python
|
|
panel = wx.Panel() # Note: default constructor used.
|
|
panel.Hide() # Can be called before actually creating it.
|
|
panel.Create(parent, wx.ID_ANY, ...) # Won't be shown yet.
|
|
... create all the panel children ...
|
|
panel.Show() # Now everything will be shown at once.
|