Registers an attached property with the specified property name, property type, and owner type.
Namespace:
System.Windows
Assembly:
WindowsBase (in WindowsBase.dll)
Visual Basic (Declaration)
Public Shared Function RegisterAttached ( _
name As String, _
propertyType As Type, _
ownerType As Type _
) As DependencyProperty
Dim name As String
Dim propertyType As Type
Dim ownerType As Type
Dim returnValue As DependencyProperty
returnValue = DependencyProperty.RegisterAttached(name, _
propertyType, ownerType)
public static DependencyProperty RegisterAttached(
string name,
Type propertyType,
Type ownerType
)
public:
static DependencyProperty^ RegisterAttached(
String^ name,
Type^ propertyType,
Type^ ownerType
)
public static function RegisterAttached(
name : String,
propertyType : Type,
ownerType : Type
) : DependencyProperty
You cannot use methods in XAML.
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. That identifier is then used to reference the dependency property later, for operations such as setting its value programmatically or obtaining metadata.
An attached property is a property concept defined by Extensible Application Markup Language (XAML). WPF implements attached properties as dependency properties. Because the WPF attached properties are dependency properties, they can have metadata applied that can be used by the general property system for operations such as reporting layout characteristics. For more information, see Attached Properties Overview.
For more information on dependency property registration, see DependencyProperty.
The following example registers an attached property on an abstract class using this RegisterAttached signature.
public static readonly DependencyProperty IsBubbleSourceProperty = DependencyProperty.RegisterAttached(
"IsBubbleSource",
typeof(Boolean),
typeof(AquariumObject2)
);
public static void SetIsBubbleSource(UIElement element, Boolean value)
{
element.SetValue(IsBubbleSourceProperty, value);
}
public static Boolean GetIsBubbleSource(UIElement element)
{
return (Boolean)element.GetValue(IsBubbleSourceProperty);
}
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 3.5, 3.0
Reference
Other Resources