Example #1
0
 // 點擊AboutMenuItem
 private void ClickAboutMenuItem(Object sender, EventArgs eventArgument)
 {
     using (Form aboutDialog = new AboutForm())
     {
         aboutDialog.ShowDialog();
     }
 }
Example #2
0
        private void aboutMenuItem1_Click(object sender, EventArgs e)
        {
            // about
            AboutForm about = new AboutForm();
            about.FormBorderStyle = FormBorderStyle.FixedToolWindow;

            // show the about form
            about.Show();
        }
Example #3
0
 /// <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();
 }
Example #4
0
 private void OpenAboutPage()
 {
     AboutForm aboutForm = new AboutForm();
     aboutForm.Show();
 }
Example #5
0
 // 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();
 }
Example #7
0
        public static void ShowAboutForm(IWin32Window owner)
        {
            var form = new AboutForm();

            form.Show(owner);
        }
Example #8
0
 public static void ShowAboutForm(IWin32Window owner)
 {
     var form = new AboutForm();
     form.Show(owner);
 }
Example #9
0
 private void miAbout_Click(object sender, EventArgs e)
 {
     AboutForm aboutForm = new AboutForm();
     aboutForm.ShowDialog();
 }
Example #10
0
 private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
 {
     var form = new AboutForm();
     form.ShowDialog();
 }
Example #11
0
		// ------------------------------------------------------------------
		#endregion

		private void aboutZetaResxEditorToolStripMenuItem_Click(
			object sender,
			ItemClickEventArgs e)
		{
			using (var about = new AboutForm())
			{
				about.ShowDialog(this);
			}
			UpdateUI();
		}
Example #12
0
 /// <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);
 }