Ejemplo n.º 1
0
        public ForumListPage()
        {
            var forumlist = new ListView
            {
                HasUnevenRows = false,
                ItemTemplate = new DataTemplate(typeof(CustomListStyle)),
                ItemsSource = ForumListData.GetData(),
                BackgroundColor = Color.White,
                RowHeight = 50,
            };

            Content = new StackLayout
            {
                HorizontalOptions = LayoutOptions.FillAndExpand,
                VerticalOptions = LayoutOptions.FillAndExpand,
                BackgroundColor = Color.White,
                Children = { forumlist }
            };

              forumlist.ItemSelected += (sender, e) =>
                {
                     var selectedObject = e.SelectedItem as CPMobile.Models.ForumType;

                 var forumPage = new ForumDetailListPage(selectedObject.title,selectedObject.ForumId);
                 Navigation.PushAsync(forumPage);
                };
        }
Ejemplo n.º 2
0
        public ForumListPage()
        {
            var searchBar = new SearchBar
            {
                Placeholder = "Search Forum ",
                BackgroundColor = Color.White,
                CancelButtonColor = App.BrandColor,
            };
            var vetlist = new ListView
            {
                HasUnevenRows = false,
                ItemTemplate = new DataTemplate(typeof(CustomListStyle)),
                ItemsSource = ForumListData.GetData(),
                BackgroundColor = Color.White,
                RowHeight = 50,
            };

            //vetlist.SetBinding<ArticlePageViewModel>();
            Content = new StackLayout
            {
                HorizontalOptions = LayoutOptions.FillAndExpand,
                VerticalOptions = LayoutOptions.FillAndExpand,
                BackgroundColor = Color.White,
                Children = { searchBar, vetlist }
            };

              vetlist.ItemSelected += (sender, e) =>
                {
                     var selectedObject = e.SelectedItem as CPMobile.Models.ForumType;

                 var forumPage = new ForumDetailListPage(selectedObject.title,selectedObject.ForumId);
                 Navigation.PushAsync(forumPage);
                };
        }
Ejemplo n.º 3
0
        public ForumListPage()
        {
            var forumlist = new ListView
            {
                HasUnevenRows   = false,
                ItemTemplate    = new DataTemplate(typeof(CustomListStyle)),
                ItemsSource     = ForumListData.GetData(),
                BackgroundColor = Color.White,
                RowHeight       = 50,
            };

            Content = new StackLayout
            {
                HorizontalOptions = LayoutOptions.FillAndExpand,
                VerticalOptions   = LayoutOptions.FillAndExpand,
                BackgroundColor   = Color.White,
                Children          = { forumlist }
            };

            forumlist.ItemSelected += (sender, e) =>
            {
                var selectedObject = e.SelectedItem as CPMobile.Models.ForumType;

                var forumPage = new ForumDetailListPage(selectedObject.title, selectedObject.ForumId);
                Navigation.PushAsync(forumPage);
            };
        }