Esempio n. 1
0
		public App ()
		{	
			Current = this;

			var isLoggedIn = Properties.ContainsKey("IsLoggedIn")?(bool)Properties ["IsLoggedIn"]:false;

			// we remember if they're logged in, and only display the login page if they're not
			if (isLoggedIn)
				MainPage = new LoginPattern.MainPage ();
			else
				MainPage = new LoginModalPage (this);
		}
Esempio n. 2
0
        public App()
        {
            Current = this;

            var isLoggedIn = Properties.ContainsKey("IsLoggedIn")?(bool)Properties ["IsLoggedIn"]:false;

            // we remember if they're logged in, and only display the login page if they're not
            if (isLoggedIn)
            {
                MainPage = new LoginPattern.MainPage();
            }
            else
            {
                MainPage = new LoginModalPage(this);
            }
        }
Esempio n. 3
0
 public void Logout()
 {
     user = null;
     Properties ["IsLoggedIn"] = false;             // only gets set to 'true' on the LoginPage
     MainPage = new LoginModalPage(this);
 }
Esempio n. 4
0
		public void Logout ()
		{
			Properties ["IsLoggedIn"] = false; // only gets set to 'true' on the LoginPage
			MainPage = new LoginModalPage (this);
		}