Наследование: Xamarin.Forms.ContentPage
Пример #1
0
		public App()
		{
			var page = new ScanDevicePage();
			NavigationPage.SetHasNavigationBar(page, false);
			var navPage = new NavigationPage(page);

			MainPage = navPage;

#if __IOS__
			navPage.BarBackgroundColor = AppColors.Blue;
			navPage.BarTextColor = Color.White;
#endif
			// The root page of your application
			//MainPage = navPage;
		}
Пример #2
0
        public App()
        {
            var page = new ScanDevicePage();

            NavigationPage.SetHasNavigationBar(page, false);
            var navPage = new NavigationPage(page);

            MainPage = navPage;

#if __IOS__
            navPage.BarBackgroundColor = AppColors.Blue;
            navPage.BarTextColor       = Color.White;
#endif
            // The root page of your application
            //MainPage = navPage;
        }