Example #1
0
        void Handle(Input.SignInClick action)
        {
            this.Message = string.Empty;
            action.Cancel();

            this.Submit++;
        }
Example #2
0
        void Handle(Input.SignInClick action)
        {
            this.Message = null;
            action.Cancel();

            this.Submit++;
        }
Example #3
0
        void Handle(Input.SignInClick action)
        {
            this.Message = null;
            action.Cancel();

            this.Submit++;

            //RedirectUrl = "/chatter";
        }
Example #4
0
        void Handle(Input.SignInClick action)
        {
            action.Cancel();

            if (this.MainForm != null)
            {
                this.MainForm.OpenSignIn();
            }
        }
Example #5
0
        void Handle(Input.SignInClick action)
        {
            action.Cancel();

            this.MainForm?.OpenSignIn();
        }