예제 #1
0
        public bool DoesFeedbackWindowExist()
        {
            WpfWindow theWindow = GetFeedbackWindow();
            Point     p;

            return(theWindow.TryGetClickablePoint(out p));
        }
예제 #2
0
        public bool ServiceDetailsWindowExists()
        {
            WpfWindow theWindow = ServiceDetailsWindow();
            Point     p         = new Point();
            bool      doesExist = theWindow.TryGetClickablePoint(out p);

            return(doesExist);
        }
예제 #3
0
        public bool DebugWindowExists()
        {
            WpfWindow uIDebugWindow = UIDebugWindow;
            Point     p;

            if (uIDebugWindow.TryGetClickablePoint(out p))
            {
                return(true);
            }
            return(false);
        }
예제 #4
0
 public bool IsNewServerWindowOpen()
 {
     try
     {
         WpfWindow theWindow = GetNewServerWindow();
         Point     p         = new Point();
         return(theWindow.TryGetClickablePoint(out p));
     }
     catch
     {
         return(false);
     }
 }