4 overrides of CreateInstance
System.Windows.Forms.Design (4)
System\Windows\Forms\Design\ImageCollectionEditor.cs (1)
63protected override object CreateInstance(Type type)
System\Windows\Forms\Design\ListViewGroupCollectionEditor.cs (1)
25protected override object CreateInstance(Type itemType)
System\Windows\Forms\Design\ListViewSubItemCollectionEditor.cs (1)
27protected override object CreateInstance(Type type)
System\Windows\Forms\Design\TabPageCollectionEditor.cs (1)
34protected override object CreateInstance(Type itemType)
5 references to CreateInstance
System.Windows.Forms.Design (4)
System\ComponentModel\Design\CollectionEditor.CollectionForm.cs (1)
139protected object CreateInstance(Type itemType) => _editor.CreateInstance(itemType);
System\Windows\Forms\Design\ListViewGroupCollectionEditor.cs (1)
27ListViewGroup group = (ListViewGroup)base.CreateInstance(itemType);
System\Windows\Forms\Design\ListViewSubItemCollectionEditor.cs (1)
29object instance = base.CreateInstance(type);
System\Windows\Forms\Design\TabPageCollectionEditor.cs (1)
36object instance = base.CreateInstance(itemType);
System.Windows.Forms.Design.Tests (1)
System\ComponentModel\Design\CollectionEditorTests.cs (1)
1044public new object CreateInstance(Type itemType) => base.CreateInstance(itemType);