Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. private void Form1_Load(object sender, EventArgs e)
  2. {
  3. som = Path.Combine(CaminhoMusica, "MenuSom.mp3");
  4. WMPLib.WindowsMediaPlayer musica = new WMPLib.WindowsMediaPlayer();
  5. musica.URL = som;
  6. musica.controls.play();
  7. musica.settings.setMode("loop", true);
  8. guardar.Tocandomusica = true;
  9. }
  10.  
  11. private void Habitos_Load(object sender, EventArgs e)
  12. {
  13.  
  14. if (animal is Cachorro)
  15. {
  16. lbAnimal.Text = "Cachorro";
  17. lbClassificacao.Text = "Mamifero - Predador";
  18. pnMamiferos.Enabled = true;
  19. pnPredadores.Enabled = true;
  20. }
  21. }
  22.  
  23. Habitos habitos = new Habitos(x.Valor);
  24. this.Hide();
  25. habitos.ShowDialog();
  26. this.Show();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement