public App ()
		{	
			//MainPage = new MainPage ();   // uncomment this to test the code-behind version
			MainPage = new MainPageXaml (); 
		}
		public App ()
		{	
//			return new MainPage ();
			MainPage = new MainPageXaml (); // uncomment this to test the Xaml version
		}
Exemple #3
0
        public App()
        {
//			return new MainPage ();
            MainPage = new MainPageXaml();              // uncomment this to test the Xaml version
        }
 public App()
 {
     //MainPage = new MainPage ();   // uncomment this to test the code-behind version
     MainPage = new MainPageXaml();
 }