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

            newIm.BeginInit();
            newIm.UriSource = new Uri(@"C:\Users\admin\Desktop\VirtualOrchestra\GUI\Resources\Daftpunk.jpg");
            newIm.EndInit();
            PreviewImage.Source = newIm;
            ArtistName.Content  = "Daft Punk";
            SongName.Content    = "Get Lucky";
            YearText.Content    = "2013";
            songFile            = @"C:\Users\admin\Desktop\VirtualOrchestra\Sample MIDIs\daft.mid";
            songName            = "Daft Punk: Get Lucky";
        }
 private void GetLuckyLoop(object sender, RoutedEventArgs e)
 {
     GetLucky.Position = TimeSpan.Zero;
     GetLucky.Play();
 }