当前位置: 首页>>代码示例>>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;未经允许,请勿转载。