************** wx.PySimpleApp ************** Inheritance diagram for `wx.PySimpleApp`: | .. inheritance-diagram:: wx.PySimpleApp | Description =========== 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 <#OnInit>`_. For example:: app = wx.PySimpleApp() frame = wx.Frame(None, title='Hello World') frame.Show() app.MainLoop() .. seealso:: `wx.App `_ Derived From ^^^^^^^^^^^^^ * `wx.PyApp `_ * `wx.App `_ * `wx.EvtHandler `_ * `wx.Object `_ Methods Summary ^^^^^^^^^^^^^^^ * `__init__ <#__init__>`_ * `OnInit <#OnInit>`_ Class API ========= Methods ^^^^^^^ .. method:: __init__(redirect=False, filename=None, useBestVisual=False, clearSigInt=True) Constructor. See `wx.App.__init__ `_. **Parameters:** * `redirect` (bool) * `filename` (string) * `useBestVisual` (bool) * `clearSigInt` (bool) | **Returns:** `wx.PySimpleApp `_ -------- .. method:: OnInit() `No docstrings available for this method.`