Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 2.5 KB

focusmanager_losingfocus.md

File metadata and controls

44 lines (28 loc) · 2.5 KB
-api-id -api-type ms.custom
E:Windows.UI.Xaml.Input.FocusManager.LosingFocus
winrt event
RS5

Windows.UI.Xaml.Input.FocusManager.LosingFocus

-description

Occurs before focus moves from the current element with focus to the target element. This event is raised synchronously to ensure focus isn't moved while the event is bubbling.

-xaml-syntax

<uiElement LosingFocus="eventhandler"/>

-remarks

We recommend using the UIElement focus routed events instead of FocusManager events whenever possible.

FocusNavigationDirection.Previous and FocusNavigationDirection.Next cannot be used with FindNextElementOptions. Only FocusNavigationDirection.Up, FocusNavigationDirection.Down, FocusNavigationDirection.Left, or FocusNavigationDirection.Right are supported.

UIElement focus events bubble up to the FocusManager in the following order:

  1. UIElement.LosingFocus/FocusManager.LosingFocus
  2. UIElement.GettingFocus/FocusManager.GettingFocus
  3. UIElement.LostFocus routed event is raised by the element that lost focus and the event bubbles up
  4. FocusManager.LostFocus is raised (even if the routed event is marked handled)
  5. UIElement.GotFocus routed event is raised by the element that received focus and the event bubbles up
  6. FocusManager.GotFocus is raised (even if the routed event is marked handled)

-see-also

LosingFocusEventArgs, UIElement.LosingFocus, UIElement.LosingFocusEvent, Keyboard interactions, Focus navigation for keyboard, gamepad, remote control, and accessibility tools, Programmatic focus navigation

-examples