當前位置: 首頁>>代碼示例>>C#>>正文


C# API.getSeason方法代碼示例

本文整理匯總了C#中API.getSeason方法的典型用法代碼示例。如果您正苦於以下問題:C# API.getSeason方法的具體用法?C# API.getSeason怎麽用?C# API.getSeason使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在API的用法示例。


在下文中一共展示了API.getSeason方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: NavigationHelper_LoadState

        /// <summary>
        /// Populates the page with content passed during navigation.  Any saved state is also
        /// provided when recreating a page from a prior session.
        /// </summary>
        /// <param name="sender">
        /// The source of the event; typically <see cref="NavigationHelper"/>
        /// </param>
        /// <param name="e">Event data that provides both the navigation parameter passed to
        /// <see cref="Frame.Navigate(Type, Object)"/> when this page was initially requested and
        /// a dictionary of state preserved by this page during an earlier
        /// session.  The state will be null the first time a page is visited.</param>
        private async void NavigationHelper_LoadState(object sender, LoadStateEventArgs e)
        {
                //Loading
            cover.Height = Window.Current.Bounds.Height;
            //Create a fake show, which isn't visible to decrease uglyness
            //NTW.DataContext = new Episode(false, true) { redo = Windows.UI.Xaml.Visibility.Collapsed };


            api = (API)e.NavigationParameter;
            Show = api.passed as TvShow;
            await Show.expand();

            //if(Show.following)
            //{
            //    followColor.Fill = ((SolidColorBrush)App.Current.Resources["PhoneAccentBrush"]);
            //}

            //Create a new commandbar and add buttons
            bar = new CommandBar();
            AppBarButton follow = new AppBarButton() { Icon = new SymbolIcon(Symbol.Favorite), Label = "Follow" };
            follow.Click += Tapped_Favorite;
            

            AppBarButton unfollow = new AppBarButton() { Icon = new SymbolIcon(Symbol.UnFavorite), Label = "Unfollow" };
            unfollow.Click += Tapped_Favorite;
            unfollow.Visibility = Windows.UI.Xaml.Visibility.Collapsed;
            

            AppBarButton seen = new AppBarButton() { Icon = new SymbolIcon(Symbol.Accept), Label = "Mark all as seen" };
            seen.Click += markAsSeen_Click;
            seen.Visibility = Windows.UI.Xaml.Visibility.Collapsed;            

            bar.PrimaryCommands.Add(seen);
            bar.PrimaryCommands.Add(follow);
            bar.PrimaryCommands.Add(unfollow);

            setFollowingAppButton();

            bar.Visibility = Windows.UI.Xaml.Visibility.Collapsed;

            BottomAppBar = bar;

            Image.Source = new Windows.UI.Xaml.Media.Imaging.BitmapImage(new Uri(Show.Image.UriSource.ToString().Replace("80", "357").Replace("112", "500")));
            this.DataContext = Show;

        //    NTWtitle.Visibility = Windows.UI.Xaml.Visibility.Collapsed;

        //    List<Episode> wl = await api.getWatchList();
        //    if(wl != null)
        //    {
        //        foreach(Episode ep in wl)
        //        {
        //            if(ep.SeriesName == Show.Name)
        //            {
        //                NTW.DataContext = ep;
        //                NTWtitle.Visibility = Windows.UI.Xaml.Visibility.Visible;
        //                break;
        //            }
        //        }
            
        //    }
            if (Show.numberOfSeasons > 0)
            {
                season = new List<Episode>[Show.numberOfSeasons + 1];
                //For every show create a new pivot with a gridview with the episode-itemtemplate;
                for (int i = Show.numberOfSeasons; i > 0; i--)
                {
                    PivotItem item = new PivotItem();
                    item.Header = "Season " + i;
                    List<Episode> episodelist = await api.getSeason(Show, i);
                    season[i] = episodelist;
                    GridView view = new GridView();

                    view.ItemTemplate = Resources["seasy"] as DataTemplate;
                    view.ItemsSource = episodelist;
                    item.Content = view;
                    item.ApplyTemplate();
                    pivo.Items.Add(item);
                }
            }
            
        }
開發者ID:newnottakenname,項目名稱:FollowshowsWP,代碼行數:93,代碼來源:ShowPage.xaml.cs


注:本文中的API.getSeason方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。