UIElement3D.IsEnabledCore Property

Definition

Gets a value that becomes the return value of IsEnabled in derived classes.

protected:
 virtual property bool IsEnabledCore { bool get(); };
protected virtual bool IsEnabledCore { get; }
member this.IsEnabledCore : bool
Protected Overridable ReadOnly Property IsEnabledCore As Boolean

Property Value

true if the element is enabled; otherwise, false.

Remarks

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

Notes to Inheritors

The default implementation of this property caches the value and also calculates whether the parent element of this element is enabled. (If the parent is not enabled, the child element cannot be effectively enabled in practical user interface (UI).) If you choose to override this implementation, make certain that you call the base implementation to preserve this behavior.

Applies to

See also