public bool DoesFeedbackWindowExist() { WpfWindow theWindow = GetFeedbackWindow(); Point p; return(theWindow.TryGetClickablePoint(out p)); }
public bool ServiceDetailsWindowExists() { WpfWindow theWindow = ServiceDetailsWindow(); Point p = new Point(); bool doesExist = theWindow.TryGetClickablePoint(out p); return(doesExist); }
public bool DebugWindowExists() { WpfWindow uIDebugWindow = UIDebugWindow; Point p; if (uIDebugWindow.TryGetClickablePoint(out p)) { return(true); } return(false); }
public bool IsNewServerWindowOpen() { try { WpfWindow theWindow = GetNewServerWindow(); Point p = new Point(); return(theWindow.TryGetClickablePoint(out p)); } catch { return(false); } }