// 點擊AboutMenuItem private void ClickAboutMenuItem(Object sender, EventArgs eventArgument) { using (Form aboutDialog = new AboutForm()) { aboutDialog.ShowDialog(); } }
private void aboutMenuItem1_Click(object sender, EventArgs e) { // about AboutForm about = new AboutForm(); about.FormBorderStyle = FormBorderStyle.FixedToolWindow; // show the about form about.Show(); }
/// <summary> /// Eventhandler for the About menu item click. Shows the aboutform /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void aboutToolStripMenuItem_Click(object sender, EventArgs e) { AboutForm AbForm = new AboutForm(); AbForm.Show(); }
private void OpenAboutPage() { AboutForm aboutForm = new AboutForm(); aboutForm.Show(); }
// On "Help->About" private void AboutHelpItemClick(object sender, EventArgs e) { var form = new AboutForm(); form.ShowDialog(); form.Dispose(); }
private void aboutToolStripMenuItem1_Click(object sender, EventArgs e) { AboutForm aboutf = new AboutForm(); aboutf.ShowDialog(); }
public static void ShowAboutForm(IWin32Window owner) { var form = new AboutForm(); form.Show(owner); }
private void miAbout_Click(object sender, EventArgs e) { AboutForm aboutForm = new AboutForm(); aboutForm.ShowDialog(); }
private void aboutToolStripMenuItem_Click(object sender, EventArgs e) { var form = new AboutForm(); form.ShowDialog(); }
// ------------------------------------------------------------------ #endregion private void aboutZetaResxEditorToolStripMenuItem_Click( object sender, ItemClickEventArgs e) { using (var about = new AboutForm()) { about.ShowDialog(this); } UpdateUI(); }
/// <summary> /// /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void About_Click(object sender, System.EventArgs e) { AboutForm frm = new AboutForm(_points); frm.ShowDialog(this); }