Inheritance: System.Windows.Forms.Form
Ejemplo n.º 1
0
        public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value)
        {
            About about = new About();
            about.ShowDialog();
            about.Dispose();

            return null;
        }
Ejemplo n.º 2
0
 private void OnShowAbout(object sender, EventArgs e)
 {
     About frm = new About();
     frm.Show();
 }
Ejemplo n.º 3
0
 private void toolStripButtonAbout_Click(object sender, EventArgs e)
 {
     var form = new About(false);
     form.ShowDialog(this);
 }