Esempio n. 1
0
        public static bool FindWindow()
        {
            _handle = FindWindowA("Siebenwind", null);
            if (_handle != null && IsWindow(_handle) == 0)
                _handle = null;

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