Exemplo n.º 1
0
 private void Siguiente_Click(object sender, EventArgs e)
 {
     Lista_Canciones.SetSelected(Lista_Canciones.SelectedIndex + 1, true);
 }
Exemplo n.º 2
0
 private void Primero_Click(object sender, EventArgs e)
 {
     Lista_Canciones.SetSelected(0, true);
 }
Exemplo n.º 3
0
 private void Ultimo_Click(object sender, EventArgs e)
 {
     Lista_Canciones.SetSelected(canciones.Count - 1, true);
 }
Exemplo n.º 4
0
 private void Atras_Click(object sender, EventArgs e)
 {
     Lista_Canciones.SetSelected(Lista_Canciones.SelectedIndex - 1, true);
 }