5 instantiations of TypeWrapper
System.Activities.Presentation (5)
System.Activities.Presentation\System\Activities\Presentation\View\TypePresenter.xaml.cs (5)
325this.nullTypeWrapper = new TypeWrapper(NullString, "Null", null); 353yield return new TypeWrapper(type); 362yield return new TypeWrapper("Array of [T]", "T[]", typeof(ArrayOf<>)); 367yield return new TypeWrapper(BrowseTypeString, "BrowseForTypes", typeof(BrowseForType)); 886return new TypeWrapper((Type)value);
13 references to TypeWrapper
System.Activities.Presentation (13)
System.Activities.Presentation\System\Activities\Presentation\View\TypePresenter.xaml.cs (13)
153TypeWrapper nullTypeWrapper = null; 199TypeWrapper tw = (TypeWrapper)this.typeComboBox.SelectedItem; 219TypeWrapper typeWrapper = (TypeWrapper)this.typeComboBox.Items.GetItemAt(i); 319internal TypeWrapper NullTypeWrapper 338public IEnumerable<TypeWrapper> Items 590TypeWrapper wrapper = (TypeWrapper)this.typeComboBox.SelectedItem; 824TypeWrapper that = obj as TypeWrapper; 897TypeWrapper typeWrapper = value as TypeWrapper;