public Issue2357()
        {
            MasterViewModel = new MasterViewModel();
            MasterViewModel.PageSelectionChanged += MasterViewModelOnPageSelectionChanged;
            BindingContext = MasterViewModel;

            Detail = new NavigationPage(new ContentPage {
                Title   = "Home",
                Content = new Label {
                    Text              = "Hello, Forms !",
                    VerticalOptions   = LayoutOptions.CenterAndExpand,
                    HorizontalOptions = LayoutOptions.CenterAndExpand
                }
            });
            InitializeComponent();
        }
Beispiel #2
0
		public Issue2357 ()
		{
			MasterViewModel = new MasterViewModel ();
			MasterViewModel.PageSelectionChanged += MasterViewModelOnPageSelectionChanged;
			BindingContext = MasterViewModel;

			Detail = new NavigationPage (new ContentPage {
				Title = "Home",
				Content = new Label {
					Text = "Hello, Forms !",
					VerticalOptions = LayoutOptions.CenterAndExpand,
					HorizontalOptions = LayoutOptions.CenterAndExpand
				}
			});
			InitializeComponent ();
		}