コード例 #1
0
ファイル: App.xaml.cs プロジェクト: fanun1k/OTB_Segura
 public App()
 {
     InitializeComponent();
     if (Application.Current.Properties.ContainsKey("Sesion"))
     {
         appShell = null;
         appShell = new AppShell();
         MainPage = appShell;
     }
     else
     {
         login    = null;
         login    = new View_Login();
         MainPage = new NavigationPage(login);
     }
 }
コード例 #2
0
        }                                             //temporary until database is functional, just for UI testing

        public App()
        {
            InitializeComponent();

            MainPage = new View_Login();
        }