Ejemplo n.º 1
0
 private void btnPlay_Click(object sender, EventArgs e)
 {
     if (metroComboBox1.SelectedItem != null)
     {
         // this.Close();
         MetroForm playingScreen = new PlayingScreen(metroComboBox1.SelectedItem as Theme);
         playingScreen.Show();
     }
 }
Ejemplo n.º 2
0
        private void btnPlayAll_Click(object sender, EventArgs e)
        {
            MetroForm playingScreen = new PlayingScreen(null);

            playingScreen.Show();
        }