Skip to content

Latest commit

 

History

History
48 lines (26 loc) · 1.99 KB

focusstate.md

File metadata and controls

48 lines (26 loc) · 1.99 KB
-api-id -api-type
T:Windows.UI.Xaml.FocusState
winrt enum

FocusState

-description

Describes how an element obtained focus.

-enum-fields

-field Unfocused:0

Element is not currently focused.

-field Pointer:1

Element obtained focus through a pointer action.

-field Keyboard:2

Element obtained focus through a keyboard action, such as tab sequence traversal.

-field Programmatic:3

Element obtained focus through a deliberate call to Focus or a related API.

-remarks

FocusState is used as a value by the Control.FocusState property. It's also used as an input by the Control.Focus method.

If used as an input parameter for Control.Focus, you can't use Unfocused. Which value of FocusState to pass to a Control.Focus call depends on the input scenario and which user interaction your control or app code is responding to. For more info, see Remarks in Control.Focus.

The exact meaning of the FocusState values depends on whether you're reading it from Control.FocusState, or using a value to send to Control.Focus. If you are setting Control.Focus you're informing other callers (like the control templates) about how that control obtained focus.

-examples

-see-also

Control.FocusState, Control.Focus, Keyboard interactions