Registers a dependency property with the specified property name, property type, owner type, and property metadata for the property.
Namespace:
System.Windows
Assembly:
System.Windows (in System.Windows.dll)
Visual Basic (Declaration)
Public Shared Function Register ( _
name As String, _
propertyType As Type, _
ownerType As Type, _
typeMetadata As PropertyMetadata _
) As DependencyProperty
Dim name As String
Dim propertyType As Type
Dim ownerType As Type
Dim typeMetadata As PropertyMetadata
Dim returnValue As DependencyProperty
returnValue = DependencyProperty.Register(name, _
propertyType, ownerType, typeMetadata)
public static DependencyProperty Register(
string name,
Type propertyType,
Type ownerType,
PropertyMetadata typeMetadata
)
Return Value
Type:
System.Windows..::.DependencyPropertyA dependency property identifier that should be used to set the value of a public static readonly field in your class. The identifier is then used both by your own code and any third-party user code to reference the dependency property later, for operations such as setting its value programmatically, or attaching a Binding in code.
| Exception | Condition |
|---|
| ArgumentNullException | A required parameter was nullNothingnullptra null reference (Nothing in Visual Basic) (check the exception for the name of the missing parameter). |
| ArgumentException | A parameter was out of range, for instance name was an empty string. -or- Attempted to register with a propertyType that does not match a default value specified in the typeMetadata. |
Dependency property concepts are covered in detail in the topic Dependency Properties Overview.
For more information on using Register to register a custom dependency property, including examples and procedures, see Custom Dependency Objects and Dependency Properties.
If you do not need property metadata for your dependency property, specify typeMetadata as nullNothingnullptra null reference (Nothing in Visual Basic).
Silverlight does not support custom read-only dependency properties. For details, see Dependency Properties Overview.
Important Note: |
|---|
Do not register a dependency property with the specific default value of UnsetValue. This will be confusing for property consumers and will have unintended consequences within the property system. |
The following example shows a basic usage where a DependencyProperty is established as a public static member of a class. This is done by calling Register and storing the return value.
Public Shared ReadOnly IsSpinningProperty As DependencyProperty = _
DependencyProperty.Register("IsSpinning", _
GetType(Boolean), _
GetType(SilverlightExampleClass), _
Nothing)
Public Property IsSpinning() As Boolean
Get
Return CBool(GetValue(IsSpinningProperty))
End Get
Set(ByVal value As Boolean)
SetValue(IsSpinningProperty, value)
End Set
End Property
public static readonly DependencyProperty IsSpinningProperty =
DependencyProperty.Register(
"IsSpinning", typeof(Boolean),
typeof(SilverlightExampleClass), null
);
public bool IsSpinning
{
get { return (bool)GetValue(IsSpinningProperty); }
set { SetValue(IsSpinningProperty, value); }
}
You can find a similar example that provides more information about creating a custom dependency property in the topic Custom Dependency Objects and Dependency Properties.
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
Reference
Other Resources