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

            newIm.BeginInit();
            newIm.UriSource = new Uri(@"C:\Users\admin\Desktop\VirtualOrchestra\GUI\Resources\Vivaldi.jpg");
            newIm.EndInit();
            PreviewImage.Source = newIm;
            ArtistName.Content  = "Antonio Vivaldi";
            SongName.Content    = "L'autunno";
            YearText.Content    = "1725";
            songFile            = @"C:\Users\admin\Desktop\VirtualOrchestra\Sample MIDIs\fall.mid";
            songName            = "Vivaldi: Autumn";
        }
 private void FallLoop(object sender, RoutedEventArgs e)
 {
     Fall.Position = TimeSpan.Zero;
     Fall.Play();
 }