ContentElement::IsFocused Property
Gets a value that determines whether this element has logical focus.
Assembly: PresentationCore (in PresentationCore.dll)
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 Input Overview and Focus Overview.
The following example creates a style that makes a Paragraph focusable by default and gives it a visual behavior when it receives focus.
<Style x:Key="FocusableParagraph" TargetType="{x:Type Paragraph}"> <Setter Property="Focusable" Value="true"/> <Style.Triggers> <Trigger Property="IsFocused" Value="True"> <Setter Property = "Background" Value="{StaticResource BlueGreenBrush}"/> </Trigger> </Style.Triggers> </Style>
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.