Example #1
0
        public void Show()
        {
            if (Application.Current.Platform == null)
            {
                throw new Exception("When the Application's Platform is null, can not show the Dialog.");
            }

            _popUp.Show();
        }
Example #2
0
        public void Show()
        {
            if (!XForms.IsInitialized)
            {
                throw new InvalidOperationException("When the Application's Platform is not initialized, it can not show the Dialog.");
            }

            if (_popUp != null)
            {
                _popUp.Show();
            }
        }
 public void Show()
 {
     if (Application.Current.Platform == null)
     {
         throw new Exception("When the Application's Platform is null, can not show the Dialog.");
     }
     if (_contentView.Platform == null)
     {
         UpdateContent();
     }
     _control.Show();
 }
Example #4
0
        public void Show()
        {
            if (Application.Current.Platform == null)
            {
                throw new InvalidOperationException("When the Application's Platform is null, can not show the Dialog.");
            }

            if (_popUp != null)
            {
                _popUp.Show();
            }
        }
Example #5
0
 /// <summary>
 /// Shows the toast.
 /// </summary>
 public void Show()
 {
     _control.Show();
 }