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

            newIm.BeginInit();
            newIm.UriSource = new Uri(@"C:\Users\admin\Desktop\VirtualOrchestra\GUI\Resources\Wonder.jpg");
            newIm.EndInit();
            PreviewImage.Source = newIm;
            ArtistName.Content  = "Stevie Wonder";
            SongName.Content    = "Superstition";
            YearText.Content    = "1972";
            songFile            = @"C:\Users\admin\Desktop\VirtualOrchestra\Sample MIDIs\superstition.mid";
            songName            = "Wonder: Superstition";
        }
 private void SuperstitionLoop(object sender, RoutedEventArgs e)
 {
     Superstition.Position = TimeSpan.Zero;
     Superstition.Play();
 }