Exemple #1
0
        public PostListPage(Api.Client client, Api.Thread info)
        {
            Client     = client;
            threadInfo = info;

            InitializeComponent();

            scrollView.Scrolled += OnScrolled;
            content.Children.Add(new Label()
            {
                Text           = threadInfo.Title,
                FontAttributes = FontAttributes.Bold
            });

            Fetch();
        }
Exemple #2
0
 public void ShowPostListPage(Api.Client client, Api.Thread tinfo)
 {
     (mainPage.Detail as NavigationPage).PushAsync(new PostListPage(client, tinfo));
 }
 public ThreadMenuItem(Api.Thread Data)
 {
     this.Data = Data;
 }