UIElement.IsKeyboardFocusWithin Property
Assembly: PresentationCore (in presentationcore.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
'Declaration Public ReadOnly Property IsKeyboardFocusWithin As Boolean 'Usage Dim instance As UIElement Dim value As Boolean value = instance.IsKeyboardFocusWithin
/** @property */ public final boolean get_IsKeyboardFocusWithin ()
public final function get IsKeyboardFocusWithin () : boolean
You cannot use this property in XAML.
Property Value
true if keyboard focus is on the element or its child elements; otherwise, false.Changes to the value of this property typically raise the IsKeyboardFocusWithinChanged event, unless a derived class has overridden OnIsKeyboardFocusWithinChanged to suppress the event.
You do not set this property directly, but you can set the focus to an element by calling Focus, or by making a MoveFocus request. Either of these method calls might change this property value.
IsKeyboardFocused and IsKeyboardFocusWithin are typically used within class event handlers for other input-related events, for instance to determine whether the element already has keyboard focus, or to make determinations when mouse events and keyboard events occur in conjunction.
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.