Ejemplo n.º 1
0
 private void ListBox_OnSelectionChanged(object sender, SelectionChangedEventArgs e)
 {
     if (DataListBox.SelectedIndex > -1)
     {
         MusicNotifyChanged music = (DataListBox.SelectedItem as MusicNotifyChanged);
         this.MusicPlay      = music;
         this.MusicPlayIndex = DataListBox.SelectedIndex;
         SelectedMusic?.Invoke(music);
     }
 }