public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value)
        {
            About about = new About();
            about.ShowDialog();
            about.Dispose();

            return null;
        }
Example #2
0
 private void toolStripButtonAbout_Click(object sender, EventArgs e)
 {
     var form = new About(false);
     form.ShowDialog(this);
 }