예제 #1
0
        public static bool FindWindow()
        {
            _handle = FindWindowA("Siebenwind", null);
            if (_handle != null && IsWindow(_handle) == 0)
                _handle = null;

            return _handle != null;
        }
예제 #2
0
 public static extern int SetForegroundWindow(ClientHandle hWnd);
예제 #3
0
 public static extern int SendMessage(ClientHandle hWnd, int wMsg, int wParam, int lParam);
예제 #4
0
 public static extern int IsWindow(ClientHandle window);