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

            newIm.BeginInit();
            newIm.UriSource = new Uri(@"C:\Users\admin\Desktop\VirtualOrchestra\GUI\Resources\Bach.jpg");
            newIm.EndInit();
            PreviewImage.Source = newIm;
            ArtistName.Content  = "Air on a G String";
            SongName.Content    = "Johann Sebastian Bach";
            YearText.Content    = "1730";
            songFile            = @"C:\Users\admin\Desktop\VirtualOrchestra\Sample MIDIs\airgstr.mid";
            songName            = "Bach: Air on a G String";
        }
 private void AirGLoop(object sender, RoutedEventArgs e)
 {
     AirG.Position = TimeSpan.Zero;
     AirG.Play();
 }