Initializes a new instance of the PropertyMetadata class with a specified default value for the dependency property that this metadata will be applied to.
Assembly: WindowsBase (in WindowsBase.dll)
Public Sub New ( _ defaultValue As Object _ )
public PropertyMetadata(
Object defaultValue
)
public:
PropertyMetadata(
Object^ defaultValue
)
new :
defaultValue:Object -> PropertyMetadata
Parameters
- defaultValue
- Type: System.Object
The default value to specify for a dependency property, usually provided as a value of some specific type.
| Exception | Condition |
|---|---|
| ArgumentException |
defaultValue cannot be set to the value UnsetValue; see Remarks. |
The type of the value provided for defaultValue must be match or be related to the type specified in the original registration of the dependency property that this metadata will be applied to. Mismatches between metadata default value type and the type of the dependency property it is being applied to can be difficult to debug, because the mismatch is not detectable during compilation (the mismatch will raise a run-time exception).
Although it is the default per the parameterless constructor, a defaultValue of UnsetValue cannot be specified. Attempting to do so will raise an exception.
static PropertyMetadata pm; ... pm = new PropertyMetadata(Double.NaN);
.NET Framework
Supported in: 4, 3.5, 3.0.NET Framework Client Profile
Supported in: 4, 3.5 SP1Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.