BrowserTools.Utils.GetWindowRect C# (CSharp) Метод

GetWindowRect() приватный Метод

private GetWindowRect ( IntPtr hWnd, Rect &rect ) : IntPtr
hWnd System.IntPtr
rect Rect
Результат System.IntPtr
        static extern IntPtr GetWindowRect(IntPtr hWnd, out Rect rect);

Same methods

Utils::GetWindowRect ( IntPtr hWnd ) : Rect

Usage Example

Пример #1
0
        static WindowInfo GetWindowInfo(IntPtr hwnd, string processName)
        {
            WindowInfo wi = Utils.GetWindowInfo(hwnd);

            string childWindowName = GetChildWindowName(processName);

            if (!String.IsNullOrEmpty(childWindowName))
            {
                EnumChildWindows(hwnd, (IntPtr childHWnd, IntPtr param) => {
                    if (Utils.GetClassName(childHWnd) != childWindowName)
                    {
                        return(true);
                    }

                    wi.rcClient = Utils.GetWindowRect(childHWnd);
                    return(false);
                });
            }

            if (wi.rcWindow.left < 0 && wi.rcWindow.right < 0 && wi.rcWindow.top < 0 && wi.rcWindow.bottom < 0)
            {
                Console.Error.Write("Window is not on the screen");
                Environment.Exit(1);
            }

            return(wi);
        }