UIElement3D.Focusable Property

Definition

Gets or sets a value that indicates whether the element can receive focus.

public:
 property bool Focusable { bool get(); void set(bool value); };
public bool Focusable { get; set; }
member this.Focusable : bool with get, set
Public Property Focusable As Boolean

Property Value

true if the element is focusable; otherwise false. The default is false.

Implements

Remarks

Only the focused element receives keyboard input.

Focusable is the Microsoft .NET property accessor for what is in reality a dependency property. This particular dependency property quite frequently has its apparent "default" value set differently in derived element classes. This commonly occurs in one of two ways:

  • The dependency property is inherited by a particular derived class, but that derived class overrides the metadata of the dependency property and changes the property default value.

Focusable is introduced in the .NET Framework version 3.5. For more information, see Versions and Dependencies.

Dependency Property Information

Identifier field FocusableProperty
Metadata properties set to true None

Applies to

See also