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

            newIm.BeginInit();
            newIm.UriSource = new Uri(@"C:\Users\admin\Desktop\VirtualOrchestra\GUI\Resources\unicorn.jpg");
            newIm.EndInit();
            PreviewImage.Source = newIm;
            ArtistName.Content  = "Erasure";
            SongName.Content    = "Always";
            YearText.Content    = "1994";
            songFile            = @"C:\Users\admin\Desktop\VirtualOrchestra\Sample MIDIs\always.mid";
            songName            = "Erasure: Always";
        }
 private void AlwaysLoop(object sender, RoutedEventArgs e)
 {
     Always.Position = TimeSpan.Zero;
     Always.Play();
 }