A child focus event is sent to a (parent-)window when one of its child windows gains focus, so that the window could restore the focus back to its corresponding child if it loses it now and regains later.
Notice that child window is the direct child of the window receiving event. Use wx.Window.FindFocus
to retrieve the window which is actually getting focus.
Handlers bound for the following event types will receive a wx.ChildFocusEvent parameter.
wxEVT_CHILD_FOCUS
event.See also
__init__ |
Constructor. |
GetWindow |
Returns the direct child which receives the focus, or a (grand-)parent of the control receiving the focus. |
wx.
ChildFocusEvent
(CommandEvent)¶Possible constructors:
ChildFocusEvent(win=None)
A child focus event is sent to a (parent-)window when one of its child windows gains focus, so that the window could restore the focus back to its corresponding child if it loses it now and regains later.
__init__
(self, win=None)¶Constructor.
Parameters: | win (wx.Window) – The direct child which is (or which contains the window which is) receiving the focus. |
---|
GetWindow
(self)¶Returns the direct child which receives the focus, or a (grand-)parent of the control receiving the focus.
To get the actually focused control use wx.Window.FindFocus
.
Return type: | wx.Window |
---|