1 write to _editor
System.Windows.Forms.Design (1)
System\ComponentModel\Design\CollectionEditor.CollectionForm.cs (1)
30_editor = editor.OrThrowIfNull();
12 references to _editor
System.Windows.Forms.Design (12)
System\ComponentModel\Design\CollectionEditor.CollectionForm.cs (12)
36protected Type CollectionItemType => _editor.CollectionItemType; 41protected Type CollectionType => _editor.CollectionType; 52bool editable = typeof(IList).IsAssignableFrom(_editor.CollectionType); 70protected ITypeDescriptorContext? Context => _editor.Context; 91get => _editor.GetItems(EditValue); 110object? newValue = _editor.SetItems(EditValue, value); 124protected Type[] NewItemTypes => _editor.NewItemTypes; 129protected bool CanRemoveInstance(object value) => _editor.CanRemoveInstance(value); 134protected virtual bool CanSelectMultipleInstances() => _editor.CanSelectMultipleInstances(); 139protected object CreateInstance(Type itemType) => _editor.CreateInstance(itemType); 144protected void DestroyInstance(object instance) => _editor.DestroyInstance(instance); 177protected override object? GetService(Type serviceType) => _editor.GetService(serviceType);