AttachedProperty Class
Used in order to associate or attach additional information to the instance of an object.
Assembly: System.Activities.Presentation (in System.Activities.Presentation.dll)
System.Activities.Presentation.Model::AttachedProperty
System.Activities.Presentation.Model::AttachedProperty<T>
| Name | Description | |
|---|---|---|
![]() | AttachedProperty() | Initializes a new instance of the AttachedProperty class. |
| Name | Description | |
|---|---|---|
![]() | IsBrowsable | Gets or sets a Boolean value that indicates whether the AttachedProperty is browsable. |
![]() | IsReadOnly | Gets a value that determines whether the attached property is read-only. |
![]() | Name | Gets or sets the name of the property. |
![]() | OwnerType | Gets or sets the owner type. |
![]() | Type | Gets the type. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | GetValue(ModelItem^) | Retrieves the value of the specified model item. |
![]() | MemberwiseClone() | |
![]() | NotifyPropertyChanged(ModelItem^) | Creates a notification that indicates that the specified model item has changed. |
![]() | ResetValue(ModelItem^) | Resets the specified model item to the default value. |
![]() | SetValue(ModelItem^, Object^) | Sets the specified model item to the specified value. |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
This is used by the Windows Workflow Designer in order to keep track of interesting pieces of data during an editing session for data that is otherwise transient, that will (mostly) be discarded at the end of an editing session. AttachedProperty is useful as items in the View can bind to the values and react to changes. For instance, this is the way that the selected item template is displayed (it keys off of an attached property for selection).
Available since 4.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


