******************** wx.WindowCreateEvent ******************** Inheritance diagram for `wx.WindowCreateEvent`: | .. inheritance-diagram:: wx.WindowCreateEvent | Description =========== This event is sent just after the actual window associated with a `wx.Window <../Widgets/wx.Window.html>`_ object has been created. Since it is derived from `wx.CommandEvent `_, the event propagates up the window hierarchy. .. seealso:: `wx.WindowDestroyEvent `_ Derived From ^^^^^^^^^^^^^ * `wx.CommandEvent `_ * `wx.Event `_ * `wx.Object <../Widgets/wx.Object.html>`_ Event Handling ^^^^^^^^^^^^^^ ================================================== ================================================== Event Name Description ================================================== ================================================== wx.EVT_WINDOW_CREATE(func) Process a ``wx.wxEVT_WINDOW_CREATE`` event. ================================================== ================================================== Methods Summary ^^^^^^^^^^^^^^^ * `__init__ <#__init__>`_ * `GetWindow <#GetWindow>`_ Properties Summary ^^^^^^^^^^^^^^^^^^ * `Window <#Window>`_ Class API ========= Methods ^^^^^^^ .. method:: __init__(win=None) The ``wx.EVT_WINDOW_CREATE`` event is sent as soon as the window object (the underlying GUI object) exists. **Parameters:** * `win` (`wx.Window <../Widgets/wx.Window.html>`_) | **Returns:** `wx.WindowCreateEvent `_ -------- .. method:: GetWindow() Returns the window that this event refers to. | **Returns:** `wx.Window <../Widgets/wx.Window.html>`_ -------- Properties ^^^^^^^^^^ .. attribute:: Window See `GetWindow <#GetWindow>`_