Exemplo n.º 1
0
        public MainPage()
        {
            InitializeComponent();

            // Empty pages are initially set to get optimal launch experience
            Master = new ContentPage {
                Title = "Agate User's App"
            };
            Detail = NavigationPageHelper.Create(new ContentPage());
        }
Exemplo n.º 2
0
 public async Task SetCurrentPage(Page page)
 {
     Detail      = NavigationPageHelper.Create(page);
     IsPresented = false;
 }
Exemplo n.º 3
0
 private void LaunchSampleInDetail(Page page, bool animated)
 {
     Detail      = NavigationPageHelper.Create(page);
     IsPresented = false;
 }