UIElement.IsFocused Property

Definition

Gets a value that determines whether this element has logical focus. This is a dependency property.

public:
 property bool IsFocused { bool get(); };
public bool IsFocused { get; }
member this.IsFocused : bool
Public ReadOnly Property IsFocused As Boolean

Property Value

true if this element has logical focus; otherwise, false.

Examples

The following example is a code handler that changes the background of a control when it is focused.

private void setColors(object sender, RoutedEventArgs e)
{
    if (myTextBox.IsFocused) myTextBox.Foreground = Brushes.Brown;
}

Another common way to achieve this same effect is to place a Trigger in the Style of a control; this approach does not require handling specific events with code-behind and allows designers greater access to the interactive and graphical nature of the UI. For an example, see How to: Create an Outer Glow Effect.

Remarks

Logical focus might differ from keyboard focus if an application has multiple focus divisions, such as between menu contents and the remainder of the application. In this scenario, keyboard focus can only be on one element of the application UI, however, certain elements in other focus divisions might still retain logical focus. For more information on logical focus, see Focus Overview.

You do not set focus by setting this property (it is read-only). The typical use for this property is to use it as a dependency property for a Setter or EventTrigger. To set focus programmatically, call Focus. Focus can also be set by user action or by control implementations, which possibly include mouse capture behavior.

Dependency Property Information

Identifier field IsFocusedProperty
Metadata properties set to true None

Applies to

See also