UIElement3D.IsEnabled Property

Definition

Gets or sets a value indicating whether this element is enabled in the user interface (UI).

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

Property Value

true if the element is enabled; otherwise, false. The default value is true.

Remarks

Note that this property is influenced by class-specific implementations of IsEnabledCore on particular elements, often at runtime. Therefore, the default value listed here is sometimes not effective. Attempting to set this value will also potentially be overridden by the value returned by IsEnabledCore.

Elements that are not enabled do not participate in hit testing or focus and therefore will not be sources of input events.

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

Dependency Property Information

Identifier field IsEnabledProperty
Metadata properties set to true None

Applies to

See also