Registers an attached property with the specified property name, property type, and owner type.
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.
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
public class AquariumObject2{...}Without that class matching the ownerType paramter the DP wont work.