Example #1
0
        private void newToolStripMenuItem_Click(object sender, EventArgs e)
        {
            NewGameForm form = new NewGameForm();

            if (form.ShowDialog() == System.Windows.Forms.DialogResult.OK)
            {
                Game         = form.Game;
                FileLocation = null;

                Refresh();
            }
        }
Example #2
0
        private void newToolStripMenuItem_Click(object sender, EventArgs e)
        {
            NewGameForm form = new NewGameForm();
            if (form.ShowDialog() == System.Windows.Forms.DialogResult.OK) {
                Game = form.Game;
                FileLocation = null;

                Refresh();
            }
        }