Type PySimpleApp
object
--+
|
Object
--+
|
EvtHandler
--+
|
PyApp
--+
|
App
--+
|
PySimpleApp
- Known Subclasses:
-
DocApp
A simple application class. You can just create one of these and
then then make your top level windows later, and not have to worry
about OnInit. For example:
app = wx.PySimpleApp()
frame = wx.Frame(None, title='Hello World')
frame.Show()
app.MainLoop()
See Also:
wx.App
Method Summary |
|
__init__ (self,
redirect,
filename,
useBestVisual,
clearSigInt)
|
|
OnInit(self)
|
__init__(self,
redirect=False,
filename=None,
useBestVisual=False,
clearSigInt=True)
(Constructor)
-
- Overrides:
wx.App.__init__
See Also: wx.App.__init__
|