public void ShowHiddenProximateParentPopUpRecursively() { if (thisProximateParentPopUp != null) { if (thisProximateParentPopUp.IsHidden()) { thisProximateParentPopUp.Show(false); thisProximateParentPopUp.ShowHiddenProximateParentPopUpRecursively(); } } }
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); } }