1 type derived from AttachedProperty
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\AttachedProperty.cs (1)
73public class AttachedProperty<T> : AttachedProperty
12 references to AttachedProperty
System.Data (12)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Debugger\DebuggerService.cs (1)
800private void SetPropertyValue(ModelItem oldModelItem, AttachedProperty property, ModelItem newModelItem)
cdf\src\NetFx40\Tools\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)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\AttachedPropertyDescriptor.cs (2)
16AttachedProperty AttachedProperty; 19public AttachedPropertyDescriptor(AttachedProperty AttachedProperty, ModelItem owner)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (1)
1275foreach (AttachedProperty AttachedProperty in AttachedPropertiesService.GetAttachedProperties(this.itemType))
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemImpl.cs (1)
402foreach (AttachedProperty AttachedProperty in nonBrowsableAttachedProperties)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\GenericActivityTypeDesigner.xaml.cs (1)
43IEnumerable<AttachedProperty> properties = attachedPropertiesService.GetAttachedProperties(typeof(ActivityBuilder<>));
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\ViewStateAttachedPropertyFeature.cs (2)
17Dictionary<string, AttachedProperty> attachedProperties = new Dictionary<string, AttachedProperty>();