示例#1
0
 /// <summary>
 /// Show the About dialog box
 /// </summary>
 /// <param name="sender">The sender of the event</param>
 /// <param name="e">The event arguments</param>
 private void miAbout_Click(object sender, EventArgs e)
 {
     using (AboutDlg dlg = new AboutDlg())
     {
         dlg.ShowDialog();
     }
 }
示例#2
0
 /// <summary>
 /// Show the About dialog box
 /// </summary>
 /// <param name="sender">The sender of the event</param>
 /// <param name="e">The event arguments</param>
 private void miAbout_Click(object sender, EventArgs e)
 {
     using(AboutDlg dlg = new AboutDlg())
     {
         dlg.ShowDialog();
     }
 }