Example #1
0
 private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (aboutForm == null || aboutForm.IsDisposed) {
         aboutForm = new AboutForm(this);
         aboutForm.Show();
     }
 }
Example #2
0
 private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (!aboutForm.Visible)
     {
         aboutForm = new AboutForm();
         aboutForm.Show();
     }
 }
Example #3
0
 private void AboutButton_Click(object sender, EventArgs e)
 {
     var aboutForm = new AboutForm();
     aboutForm.Owner = this;
     aboutForm.Version = Assembly.GetExecutingAssembly().GetName().Version.ToString();
     aboutForm.DeviceID = Platform.GetOEMDeviceID();
     aboutForm.Show();
 }
Example #4
0
        private void aboutToolStripMenuItem1_Click(object sender, EventArgs e)
        {
            // about
            AboutForm about = new AboutForm();
            about.FormBorderStyle = FormBorderStyle.FixedToolWindow;

            // show teh about form
            about.Show();
        }
Example #5
0
 public static void ShowAbout()
 {
     if (_form == null)
     {
         _form = new AboutForm();
         _form.FormClosed += _form_FormClosed;
         _form.Show();
     }
 }
        public static void ShowAboutForm()
        {
            if (frmAboutForm != null && !frmAboutForm.IsDisposed)
            {
                frmAboutForm.Activate();
                return;
            }

            frmAboutForm = new AboutForm();
            frmAboutForm.Show();
            frmAboutForm.Activate();

        }
Example #7
0
 private void btnAbout_Click(object sender, EventArgs e)
 {
     if (AF == null || AF.IsDisposed)
     {
         AF = new AboutForm();
         AF.Show();
     }
     else
     {
         AF.BringToFront();
     }
     chkSelf.Checked = false;
 }
Example #8
0
File: Main.cs Project: yqMac/School
 //
 //help Memu
 //
 private void menuItem64_Click(object sender, EventArgs e)
 {
     AboutForm aboutForm = new AboutForm();
     aboutForm.Show();
 }
Example #9
0
 private void tsmiAbout_Click(object sender, EventArgs e)
 {
     AboutForm frm = new AboutForm() { Icon = this.Icon };
     frm.Show();
 }
Example #10
0
        private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
        {
            AboutForm frm = new AboutForm();

            frm.Show();
        }
Example #11
0
 private void About_Click(object sender, EventArgs e)
 {
     AF = new AboutForm();
     AF.Show(this);
 }
Example #12
0
 private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
 {
     var about = new AboutForm();
     about.Show();
 }
Example #13
0
 private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
 {
     AboutForm about = new AboutForm();
     about.Show();
 }
Example #14
0
 private void toolStripButtonAbout_Click(object sender, EventArgs e)
 {
     AboutForm af = new AboutForm();
     af.Show();
 }
Example #15
0
 /// <summary>
 /// 
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void AboutMenu_Click(object sender, EventArgs e)
 {
     if (!aboutFormIsOpen)
     {
         aboutFormIsOpen = true;
         AboutForm about = new AboutForm();
         about.Show();
         about.FormClosed += new FormClosedEventHandler(about_FormClosed);
     }
 }
Example #16
0
        private void btnAbout_Click(object sender, EventArgs e)
        {
            AboutForm form = new AboutForm();

            form.Show();
        }
Example #17
0
 private void aboutToolStripMenuItem1_Click(object sender, EventArgs e)
 {
     // new about form
     aboutFrm = new AboutForm();
     // show the about form
     aboutFrm.Show();
 }
Example #18
0
File: Main.cs Project: yqMac/School
 //
 //Show About form tool
 //
 private void toolStripButton10_Click(object sender, EventArgs e)
 {
     AboutForm aboutForm = new AboutForm();
     aboutForm.Show();
 }
        void About(object sender, EventArgs e)
        {
            AboutForm about = new AboutForm();

            about.Show();
        }
Example #20
0
 private void labelVer_Click(object sender, EventArgs e)
 {
     aboutForm.Show();
 }
Example #21
0
 private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (aboutForm == null)
     {
         aboutForm = new AboutForm();
         aboutForm.Disposed += new EventHandler(this.DisposeAbout);
         aboutForm.Show();
     }
     else
     {
         aboutForm.BringToFront();
     }
 }
Example #22
0
 private void aboutMenuItem_Click(object sender, EventArgs e)
 {
     AboutForm about = new AboutForm();
     about.Show();
 }
Example #23
0
 //Info Button Click
 private void _btnInfo_Click(object sender, EventArgs e)
 {
     AboutForm about = new AboutForm();
     about.Show();
     about.Update();
     about.StartPosition = FormStartPosition.CenterScreen;
     int deskHeight = Screen.PrimaryScreen.Bounds.Height;
     int deskWidth = Screen.PrimaryScreen.Bounds.Width;
     about.Location = new Point(deskWidth / 2 - about.Width / 2, deskHeight / 2 - about.Height / 2);
     Functions.pause(5000);
     about.Hide();
 }
Example #24
0
 void AboutToolStripMenuItemClick(object sender, EventArgs e)
 {
     AboutForm about = new AboutForm();
     about.Show();
 }
Example #25
0
 private void Help_Click(object sender, EventArgs e)
 {
     AboutForm abt = new AboutForm();
     abt.Show();
 }
Example #26
0
        private void button2_Click(object sender, EventArgs e)
        {
            AboutForm secondForm = new AboutForm();

            secondForm.Show();
        }
Example #27
0
 //
 //  Toolstripmenuitem object functions
 //
 private void tsmiAbout_Click(object sender, EventArgs e)
 {
     AboutForm f = new AboutForm();
     f.Show();
 }
Example #28
0
 private void aboutTmItem_Click(object sender, EventArgs e)
 {
     AboutForm form = new AboutForm();
     form.Show();
 }
 private void contactToolStripMenuItem_Click(object sender, EventArgs e)
 {
     AboutForm f = new AboutForm();
     f.Show();
 }
Example #30
0
 /// <summary>
 /// Uruchamianie okienka 'About'
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
 {
     AboutForm af = new AboutForm();
     af.MdiParent = this;
     af.Show();
 }
Example #31
0
 /**
  * Context menu about click event handler
  */
 private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
 {
     //Show the about form when requested
     AboutForm aboutForm = new AboutForm();
     aboutForm.Show();
 }
Example #32
0
 private void label1_Click(object sender, EventArgs e)
 {
     AboutForm af = new AboutForm();
     af.Show();
 }
Example #33
0
 private void AboutButton_Click(object sender, EventArgs e)
 {
     AboutForm a = new AboutForm();
     a.Show();
 }
 /// <summary>
 /// About
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void menuItem7_Click(object sender, EventArgs e)
 {
     AboutForm dDog = null;
     if ((dDog = (AboutForm)IsFormAlreadyOpen(typeof(AboutForm))) == null)
     {
         dDog = new AboutForm();
         dDog.FormClosed += new FormClosedEventHandler(Form2_FormClosed);
         dDog.Show();
     }
     else
     {
         dDog.Select(); // may be UForm.Select();
     }
 }