3 instantiations of TypeKeyValue
System.Activities.Presentation (3)
System.Activities.Presentation\System\Activities\Presentation\View\ActivityTypeResolver.xaml.cs (1)
164TypeKeyValue tkv = new TypeKeyValue(type, new Action<TypeKeyValue>(NotifyTypeChanged))
System.Activities.Presentation\System\Activities\Presentation\View\TypeBrowser.xaml.cs (1)
422this.GenericTypeMapping.Add(new TypeKeyValue(t, null));
System.Activities.Presentation\System\Activities\Presentation\View\TypeKeyValue.cs (1)
180TypeKeyValue entry = new TypeKeyValue(t, typeChangedCallBack);
19 references to TypeKeyValue
System.Activities.Presentation (19)
System.Activities.Presentation\System\Activities\Presentation\View\ActivityTypeResolver.xaml.cs (9)
24typeof(ObservableCollection<TypeKeyValue>), 50SetValue(GenericTypeMappingProperty, new ObservableCollection<TypeKeyValue>()); 70public ObservableCollection<TypeKeyValue> GenericTypeMapping 72get { return (ObservableCollection<TypeKeyValue>)GetValue(GenericTypeMappingProperty); } 91public void NotifyTypeChanged(TypeKeyValue sender) 113foreach (TypeKeyValue tkv in this.GenericTypeMapping) 125foreach (TypeKeyValue tkv in this.GenericTypeMapping) 164TypeKeyValue tkv = new TypeKeyValue(type, new Action<TypeKeyValue>(NotifyTypeChanged))
System.Activities.Presentation\System\Activities\Presentation\View\TypeBrowser.xaml.cs (4)
46typeof(ObservableCollection<TypeKeyValue>), 69SetValue(GenericTypeMappingProperty, new ObservableCollection<TypeKeyValue>()); 109ObservableCollection<TypeKeyValue> GenericTypeMapping 111get { return (ObservableCollection<TypeKeyValue>)GetValue(GenericTypeMappingProperty); }
System.Activities.Presentation\System\Activities\Presentation\View\TypeKeyValue.cs (6)
19ObservableCollection<TypeKeyValue> subTypes = new ObservableCollection<TypeKeyValue>(); 23Action<TypeKeyValue> typeChangedCallBack; 32public TypeKeyValue(Type genericType, Action<TypeKeyValue> typeChangedCallBack) 121public ObservableCollection<TypeKeyValue> SubTypes 180TypeKeyValue entry = new TypeKeyValue(t, typeChangedCallBack);