예제 #1
0
 public void ShowHiddenProximateParentPopUpRecursively()
 {
     if (thisProximateParentPopUp != null)
     {
         if (thisProximateParentPopUp.IsHidden())
         {
             thisProximateParentPopUp.Show(false);
             thisProximateParentPopUp.ShowHiddenProximateParentPopUpRecursively();
         }
     }
 }
예제 #2
0
 void ToggePopUp()
 {
     if (thisTargetPopUp.IsShown())
     {
         thisTargetPopUp.Hide(false);
     }
     else
     {
         thisTargetPopUp.Show(false);
     }
 }
        public void TogglePopUp()
        {
            IPopUp popUp = (IPopUp)popUpAdaptor.GetUIElement();

            if (popUp.IsShown())
            {
                popUp.Hide(false);
            }
            else
            {
                popUp.Show(true);
            }
        }