2 instantiations of TypeWrapper
System.Activities.Core.Presentation (2)
System\Activities\Presentation\TypeCollectionDesigner.xaml.cs (2)
54this.wrapperCollection = new ObservableCollection<TypeWrapper>(value.Select(type => new TypeWrapper(type))); 145var newEntry = new TypeWrapper(this.DefaultType);
8 references to TypeWrapper
System.Activities.Core.Presentation (8)
System\Activities\Presentation\TypeCollectionDesigner.xaml.cs (8)
41ObservableCollection<TypeWrapper> wrapperCollection; 54this.wrapperCollection = new ObservableCollection<TypeWrapper>(value.Select(type => new TypeWrapper(type))); 102List<TypeWrapper> list = new List<TypeWrapper>(); 103foreach (TypeWrapper tw in this.wrapperCollection) 105if (tw.Type != null && list.Any<TypeWrapper>(entry => Type.Equals(entry.Type, tw.Type))) 145var newEntry = new TypeWrapper(this.DefaultType); 169DependencyProperty.Register("Type", typeof(Type), typeof(TypeWrapper));