示例#1
0
        private void btJocNou_Click(object sender, EventArgs e)
        {
            Joc joc = new Joc(0);

            this.Hide();
            joc.ShowDialog();
            this.Close();
        }
示例#2
0
        private void btReplay_Click(object sender, EventArgs e)
        {
            Joc joc = new Joc(HighScore);

            this.Hide();
            joc.ShowDialog();
            this.Close();
        }