7 references to CollectionItemType
System.Windows.Forms.Design (5)
System\ComponentModel\Design\ArrayEditor.cs (1)
57
Array newArray = Array.CreateInstance(
CollectionItemType
, value.Length);
System\ComponentModel\Design\CollectionEditor.CollectionForm.cs (1)
36
protected Type CollectionItemType => _editor.
CollectionItemType
;
System\ComponentModel\Design\CollectionEditor.cs (2)
192
protected virtual Type[] CreateNewItemTypes() => [
CollectionItemType
];
244
transaction = host?.CreateTransaction(string.Format(SR.CollectionEditorUndoBatchDesc,
CollectionItemType
.Name));
System\Windows\Forms\Design\StringArrayEditor.cs (1)
42
Array newArray = Array.CreateInstance(
CollectionItemType
, value.Length);
System.Windows.Forms.Design.Tests (2)
System\ComponentModel\Design\ArrayEditorTests.cs (1)
222
public new Type CollectionItemType => base.
CollectionItemType
;
System\ComponentModel\Design\CollectionEditorTests.cs (1)
1024
public new Type CollectionItemType => base.
CollectionItemType
;