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

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