public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value) { if (context != null && context.Instance != null && provider != null) { this.context = context; edSvc = (IWindowsFormsEditorService)provider. GetService(typeof(IWindowsFormsEditorService)); if (edSvc != null) { CollectionEditorForm editorFrm = new CollectionEditorForm(newCollection); edSvc.ShowDialog(editorFrm); } } }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)