GetInstance() static private méthode

static private GetInstance ( bool create ) : PopupForm
create bool
Résultat PopupForm
Exemple #1
0
        public bool IsDisplaying()
        {
            var form = PopupForm.GetInstance(false);

            return(form.Current == this && form.PopupState != PopupState.Pending);
        }
Exemple #2
0
 public void Show()
 {
     PopupForm.GetInstance(true).Show(this);
 }