16 references to GetWindow
UIAutomationClientSideProviders (16)
MS\Internal\AutomationProxies\ClickablePoint.cs (3)
63for (hwnd = Misc.GetWindow(hwnd, NativeMethods.GW_CHILD); hwnd != IntPtr.Zero; hwnd = Misc.GetWindow(hwnd, NativeMethods.GW_HWNDNEXT)) 77hwnd = Misc.GetWindow(hwnd, NativeMethods.GW_HWNDPREV);
MS\Internal\AutomationProxies\WindowsButton.cs (1)
611hwndParent = Misc.GetWindow(hwndRoot, NativeMethods.GW_OWNER);
MS\Internal\AutomationProxies\WindowsIPAddress.cs (4)
243IntPtr hwndChild = Misc.GetWindow(_hwnd, NativeMethods.GW_CHILD); 252hwndChild = Misc.GetWindow(hwndChild, NativeMethods.GW_HWNDNEXT); 260IntPtr hwndChild = Misc.GetWindow(_hwnd, NativeMethods.GW_CHILD); 263hwndChild = Misc.GetWindow(hwndChild, NativeMethods.GW_HWNDNEXT);
MS\Internal\AutomationProxies\WindowsMenu.cs (1)
672if (IntPtr.Zero != Misc.GetWindow(hwnd, NativeMethods.GW_OWNER))
MS\Internal\AutomationProxies\WindowsSpinner.cs (2)
277IntPtr hwndChild = Misc.GetWindow(hwndParent, NativeMethods.GW_CHILD); 289hwndChild = 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)
130IntPtr hwndFirstChild = Misc.GetWindow(hwnd, NativeMethods.GW_CHILD); 137IntPtr hwndLastChild = Misc.GetWindow(hwndFirstChild, NativeMethods.GW_HWNDLAST); 144if (Misc.GetWindow(hwndFirstChild, NativeMethods.GW_HWNDNEXT) != hwndLastChild)