Пример #1
0
        /// <summary>
        /// launches the local game menu and hides the application.
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void button1_Click(object sender, EventArgs e)
        {
            this.Hide();
            NewLocalForm form = new NewLocalForm();

            form.Show();
        }
Пример #2
0
 /// <summary>
 /// launches the local game menu and hides the application.  
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void button1_Click(object sender, EventArgs e)
 {
     this.Hide();
     NewLocalForm form = new NewLocalForm();
     form.Show();
 }