示例#1
0
 private void optionsToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         GCDCore.UserInterface.Options.frmOptions frm = new GCDCore.UserInterface.Options.frmOptions();
         frm.ShowDialog();
     }
     catch (Exception ex)
     {
         GCDCore.GCDException.HandleException(ex);
     }
 }
示例#2
0
 protected override void OnClick()
 {
     try
     {
         GCDCore.UserInterface.Options.frmOptions frm = new GCDCore.UserInterface.Options.frmOptions();
         frm.ShowDialog();
     }
     catch (Exception ex)
     {
         GCDCore.GCDException.HandleException(ex);
     }
 }