예제 #1
0
        public void loadshows()
        {
            shows_name.Text    = shows.Name;
            shows_summary.Text = StringFilter.FormatString(shows.Summary);
            shows_genres.Text  = String.Join(", ", shows.Genres);
            shows_type.Text    = shows.Type;
            shows_status.Text  = shows.Status;
            shows_rating.Text  = $"{shows.Rating.Average}";
            shows_site.Text    = shows.OfficialSite;
            shows_network.Text = shows.Network.Name;


            BitmapImage pic = new BitmapImage();

            pic.BeginInit();
            pic.UriSource = new Uri(shows.Image.Original, UriKind.Absolute);
            pic.EndInit();
            shows_image.Source = pic;

            background_image.Source = pic;

            list_seasons.ItemsSource = shows.Seasons;
        }