Beispiel #1
0
        public NavigationPageWindows(ICommand restore)
        {
            PushAsync(CreateRoot(restore));
            WindowsPlatformSpecificsGalleryHelpers.AddToolBarItems(this);

            BarBackgroundColor = Color.FromHex("6495ED");
        }
Beispiel #2
0
        NavigationPage CreateThirdPage()
        {
            var content = CreateSecondPage();

            content.Title = "Content in a Nav Page";
            var navpage = new NavigationPage(content);

            navpage.Title = "Nav Page";
            WindowsPlatformSpecificsGalleryHelpers.AddToolBarItems(navpage);
            return(navpage);
        }
 public TabbedPageWindows(ICommand restore)
 {
     Children.Add(CreateFirstPage(restore));
     Children.Add(CreateSecondPage());
     WindowsPlatformSpecificsGalleryHelpers.AddToolBarItems(this);
 }
 public NavigationPageWindows(ICommand restore)
 {
     PushAsync(CreateRoot(restore));
     WindowsPlatformSpecificsGalleryHelpers.AddToolBarItems(this);
 }