PropertyMetadata.DefaultValue Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the default value of the dependency property.
public:
property System::Object ^ DefaultValue { System::Object ^ get(); void set(System::Object ^ value); };
public object DefaultValue { get; set; }
member this.DefaultValue : obj with get, set
Public Property DefaultValue As Object
Property Value
The default value of the property. The default value on a PropertyMetadata instance created with the parameterless constructor will be UnsetValue.
Exceptions
Cannot be set to the value UnsetValue once created.
Cannot set a metadata property once it is applied to a dependency property operation.
Remarks
DefaultValue is defined in the object model as read-write. This is so DefaultValue can be adjusted after initialization of the PropertyMetadata object itself. However, once the metadata is consumed as part of a call to Register, AddOwner, or OverrideMetadata, the property system will seal that metadata instance and the properties are now considered immutable. Attempting to set DefaultValue once IsSealed is true
on this metadata instance will raise an exception.
Although it is the default per the parameterless constructor, a defaultValue
of UnsetValue cannot be set using either DefaultValue or the constructor. Attempting to do so will raise an exception.
XAML Text Usage
Members of this type are not typically used in XAML.