Ejemplo n.º 1
0
        private void PlayButton_Click(object sender, EventArgs e)
        {
            //Program goes to the MainScreen method upon pressing button
            MainScreen ms = new MainScreen();

            this.Controls.Add(ms);

            playButton.Visible = false;
            titleLabel.Visible = false;
        }
Ejemplo n.º 2
0
        private void playButton_Click(object sender, EventArgs e)
        {
            Form Form1 = this.FindForm();

            Form1.Controls.Remove(this);

            MainScreen ms = new MainScreen();

            Form1.Controls.Add(ms);
        }