1 type derived from AttachedProperty
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Model\AttachedProperty.cs (1)
73public class AttachedProperty<T> : AttachedProperty
12 references to AttachedProperty
System.Activities.Presentation (12)
System.Activities.Presentation\System\Activities\Presentation\Debugger\DebuggerService.cs (1)
800private void SetPropertyValue(ModelItem oldModelItem, AttachedProperty property, ModelItem newModelItem)
System.Activities.Presentation\System\Activities\Presentation\Model\AttachedPropertiesService.cs (4)
15List<AttachedProperty> properties; 19this.properties = new List<AttachedProperty>(); 22public void AddProperty(AttachedProperty property) 35internal IEnumerable<AttachedProperty> GetAttachedProperties(Type modelItemType)
System.Activities.Presentation\System\Activities\Presentation\Model\AttachedPropertyDescriptor.cs (2)
16AttachedProperty AttachedProperty; 19public AttachedPropertyDescriptor(AttachedProperty AttachedProperty, ModelItem owner)
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (1)
1275foreach (AttachedProperty AttachedProperty in AttachedPropertiesService.GetAttachedProperties(this.itemType))
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemImpl.cs (1)
402foreach (AttachedProperty AttachedProperty in nonBrowsableAttachedProperties)
System.Activities.Presentation\System\Activities\Presentation\View\GenericActivityTypeDesigner.xaml.cs (1)
43IEnumerable<AttachedProperty> properties = attachedPropertiesService.GetAttachedProperties(typeof(ActivityBuilder<>));
System.Activities.Presentation\System\Activities\Presentation\ViewStateAttachedPropertyFeature.cs (2)
17Dictionary<string, AttachedProperty> attachedProperties = new Dictionary<string, AttachedProperty>();