예제 #1
0
        //Runs when the about button is clicked
        private void cmdAboutGame_Click(object sender, EventArgs e)
        {
            //Create a new instance of the form 'frmAbout'
            frmAbout frmAbout = new frmAbout();

            //Show the newly created form
            frmAbout.ShowDialog(this);
        }
        //Runs when menu strip about button is pressed
        private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
        {
            //Create a new instance of the form 'frmAbout'
            frmAbout frmAbout = new frmAbout();

            //Show the newly created form
            frmAbout.ShowDialog(this);
        }