private void ListBoxItem_Selected_14(object sender, RoutedEventArgs e)
        {
            StopAllMusic();
            Doves.Play();
            BitmapImage newIm = new BitmapImage();

            newIm.BeginInit();
            newIm.UriSource = new Uri(@"C:\Users\admin\Desktop\VirtualOrchestra\GUI\Resources\Prince.jpg");
            newIm.EndInit();
            PreviewImage.Source = newIm;
            ArtistName.Content  = "Prince";
            SongName.Content    = "When Doves Cry";
            YearText.Content    = "1984";
            songFile            = @"C:\Users\admin\Desktop\VirtualOrchestra\Sample MIDIs\doves.mid";
            songName            = "Prince: When Doves Cry";
        }
 private void DovesLoop(object sender, RoutedEventArgs e)
 {
     Doves.Position = TimeSpan.Zero;
     Doves.Play();
 }