DependencyProperty.PropertyType Property
Gets the type that the dependency property uses for its value.
Assembly: WindowsBase (in WindowsBase.dll)
This property reports the type of the property's value as declared by the original property registration, through the propertyType parameter. Similar to the Name, the property type of a dependency property is immutable after registration.
The following example queries various characteristics of a dependency property identifier, including the PropertyType. The type name string of the PropertyType is obtained from the returned Type.
pm = dp.GetMetadata(dp.OwnerType); MetadataClass.Text = pm.GetType().Name; TypeofPropertyValue.Text = dp.PropertyType.Name; DefaultPropertyValue.Text = (pm.DefaultValue!=null) ? pm.DefaultValue.ToString() : "null"; HasCoerceValue.Text = (pm.CoerceValueCallback == null) ? "No" : pm.CoerceValueCallback.Method.Name; HasPropertyChanged.Text = (pm.PropertyChangedCallback == null) ? "No" : pm.PropertyChangedCallback.Method.Name; ReadOnly.Text = (dp.ReadOnly) ? "Yes" : "No";
Windows 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.