Example #1
0
        public override void OnCompleted(PopUpEventArgs <string, PopUpResult> result)
        {
            PreventScrollBinding.SetIsEnabled(this, false);

            PauseTimer();
            Dispose();

            base.OnCompleted(result);
        }
Example #2
0
        public virtual void OnCompleted(PopUpEventArgs <T, TPopUpResult> result)
        {
            _alreadyFired = true;

            if (Completed != null)
            {
                Completed(this, result);
            }

            if (PopUpService != null)
            {
                PopUpService.Hide();
            }

            if (PopUpService != null && PopUpService.BackButtonPressed)
            {
                ResetWorldAndDestroyPopUp();
            }
        }