Exemplo n.º 1
0
        private void btn_back_Click(object sender, EventArgs e)
        {
            FormSelectBoardSize form = new FormSelectBoardSize(myBoardGame);

            form.Show();
            Hide();
            form.Location = this.Location;
        }
Exemplo n.º 2
0
        private void btn_play_Click(object sender, EventArgs e)
        {
            // Navigate Page.
            FormSelectBoardSize form = new FormSelectBoardSize(myBoardGame);

            form.Show();
            Hide();
            form.Location = this.Location;
        }