/// <summary> /// View application copyright and version information /// </summary> /// <param name="sender">The sender of the event</param> /// <param name="e">The event arguments</param> private void btnAbout_Click(object sender, EventArgs e) { using (AboutDlg dlg = new AboutDlg()) { dlg.ShowDialog(); } }
/// <summary> /// View application copyright and version information /// </summary> /// <param name="sender">The sender of the event</param> /// <param name="e">The event arguments</param> private void btnAbout_Click(object sender, EventArgs e) { using(AboutDlg dlg = new AboutDlg()) { dlg.ShowDialog(); } }