Table Of Contents

Previous topic

CheckListBox

Next topic

Choice

This Page

phoenix_title ChildFocusEvent

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 Window.FindFocus to retrieve the window which is actually getting focus.

events Events Emitted by this Class

Handlers bound for the following event types will receive a ChildFocusEvent parameter.

  • EVT_CHILD_FOCUS: Process a wxEVT_CHILD_FOCUS event.

class_hierarchy Inheritance Diagram

Inheritance diagram for class ChildFocusEvent

Inheritance diagram of ChildFocusEvent


method_summary Methods Summary

__init__ Constructor.
GetWindow Returns the direct child which receives the focus, or a (grand-)parent of the control receiving the focus.

property_summary Properties Summary

Window See GetWindow

api Class API



class ChildFocusEvent(CommandEvent)

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.

Possible constructors:

ChildFocusEvent(win=None)

Methods



__init__(self, win=None)

Constructor.

Parameters:win (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 Window.FindFocus .

Return type: Window

Properties



Window

See GetWindow