16 references to GetWindow
UIAutomationClientsideProviders (16)
MS\Internal\AutomationProxies\ClickablePoint.cs (3)
64for (hwnd = Misc.GetWindow(hwnd, NativeMethods.GW_CHILD); hwnd != IntPtr.Zero; hwnd = Misc.GetWindow(hwnd, NativeMethods.GW_HWNDNEXT)) 78hwnd = Misc.GetWindow(hwnd, NativeMethods.GW_HWNDPREV);
MS\Internal\AutomationProxies\WindowsButton.cs (1)
627hwndParent = Misc.GetWindow(hwndRoot, NativeMethods.GW_OWNER);
MS\Internal\AutomationProxies\WindowsIPAddress.cs (4)
257IntPtr hwndChild = Misc.GetWindow(_hwnd, NativeMethods.GW_CHILD); 266hwndChild = Misc.GetWindow(hwndChild, NativeMethods.GW_HWNDNEXT); 274IntPtr hwndChild = Misc.GetWindow(_hwnd, NativeMethods.GW_CHILD); 277hwndChild = Misc.GetWindow(hwndChild, NativeMethods.GW_HWNDNEXT);
MS\Internal\AutomationProxies\WindowsMenu.cs (1)
685if (IntPtr.Zero != Misc.GetWindow(hwnd, NativeMethods.GW_OWNER))
MS\Internal\AutomationProxies\WindowsSpinner.cs (2)
294IntPtr hwndChild = Misc.GetWindow(hwndParent, NativeMethods.GW_CHILD); 306hwndChild = Misc.GetWindow(hwndChild, NativeMethods.GW_HWNDNEXT);
MS\Internal\AutomationProxies\WindowsTab.cs (2)
756IntPtr childHwnd = Misc.GetWindow(hwnd, NativeMethods.GW_CHILD); 772childHwnd = Misc.GetWindow(childHwnd, NativeMethods.GW_HWNDLAST);
MS\Internal\AutomationProxies\WinFormsSpinner.cs (3)
140IntPtr hwndFirstChild = Misc.GetWindow(hwnd, NativeMethods.GW_CHILD); 147IntPtr hwndLastChild = Misc.GetWindow(hwndFirstChild, NativeMethods.GW_HWNDLAST); 154if (Misc.GetWindow(hwndFirstChild, NativeMethods.GW_HWNDNEXT) != hwndLastChild)