public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value) { About about = new About(); about.ShowDialog(); about.Dispose(); return null; }
private void toolStripButtonAbout_Click(object sender, EventArgs e) { var form = new About(false); form.ShowDialog(this); }