Exemple #1
0
                protected override void OnAppearing()
                {
                    base.OnAppearing();
                    _tabbedPage.Children.Add(new ContentPage());

                    Application.Current.MainPage = Issue2338TestHelper.CreateSuccessPage(nameof(Issue2338_TabbedPage));
                    _tabbedPage.Children.Add(new ContentPage());
                }
Exemple #2
0
                private void DetailAppearing(object sender, EventArgs e)
                {
                    Detail = new ContentPage()
                    {
                        Title = "Details"
                    };
                    Flyout = new ContentPage()
                    {
                        Title = "Flyout"
                    };

                    Application.Current.MainPage = Issue2338TestHelper.CreateSuccessPage(nameof(Issue2338_MasterDetailsPage_ContentPage));
                }
Exemple #3
0
 public InternalPage(int permutations)
 {
     _permutations = permutations;
     if (permutations > 5)
     {
         Device.BeginInvokeOnMainThread(() =>
         {
             Application.Current.MainPage = Issue2338TestHelper.CreateSuccessPage(nameof(Issue2338_Ctor_MultipleChanges));
         });
     }
     else
     {
         Device.BeginInvokeOnMainThread(() =>
         {
             Application.Current.MainPage =
                 new NavigationPage(new InternalPage(permutations + 1)
             {
                 Title = "Title 1"
             });
         });
     }
 }
Exemple #4
0
 public InternalTabbedPage(NavigationPage navigationPage)
 {
     _navigationPage = navigationPage;
     Children.Add(Issue2338TestHelper.CreateSuccessPage(nameof(Issue2338_SwapMainPageDuringAppearing)));
 }
Exemple #5
0
 public InternalPage()
 {
     Application.Current.MainPage = Issue2338TestHelper.CreateSuccessPage(nameof(Issue2338_Ctor));
 }