1 write to CollectionType
System.Windows.Forms.Design (1)
System\ComponentModel\Design\CollectionEditor.cs (1)
26
public CollectionEditor(Type type) =>
CollectionType
= type;
10 references to CollectionType
System.Windows.Forms.Design (8)
System\ComponentModel\Design\ArrayEditor.cs (1)
25
=>
CollectionType
?.GetElementType();
System\ComponentModel\Design\CollectionEditor.CollectionForm.cs (2)
41
protected Type CollectionType => _editor.
CollectionType
;
52
bool editable = typeof(IList).IsAssignableFrom(_editor.
CollectionType
);
System\ComponentModel\Design\CollectionEditor.cs (2)
153
PropertyDescriptor? property = TypeDescriptor.GetDefaultProperty(
CollectionType
);
176
PropertyInfo[] properties = TypeDescriptor.GetReflectionType(
CollectionType
).GetProperties(BindingFlags.Public | BindingFlags.Instance);
System\Windows\Forms\Design\ListViewItemCollectionEditor.cs (1)
32
PropertyDescriptor property = TypeDescriptor.GetDefaultProperty(
CollectionType
);
System\Windows\Forms\Design\ListViewSubItemCollectionEditor.cs (1)
50
PropertyDescriptor property = TypeDescriptor.GetDefaultProperty(
CollectionType
);
System\Windows\Forms\Design\StringArrayEditor.cs (1)
16
protected override Type CreateCollectionItemType() =>
CollectionType
.GetElementType() ?? typeof(string[]);
System.Windows.Forms.Design.Tests (2)
System\ComponentModel\Design\ArrayEditorTests.cs (1)
224
public new Type CollectionType => base.
CollectionType
;
System\ComponentModel\Design\CollectionEditorTests.cs (1)
1026
public new Type CollectionType => base.
CollectionType
;