16 references to GetWindow
UIAutomationClientSideProviders (16)
MS\Internal\AutomationProxies\ClickablePoint.cs (3)
67for (hwnd = Misc.GetWindow(hwnd, NativeMethods.GW_CHILD); hwnd != IntPtr.Zero; hwnd = Misc.GetWindow(hwnd, NativeMethods.GW_HWNDNEXT)) 81hwnd = Misc.GetWindow(hwnd, NativeMethods.GW_HWNDPREV);
MS\Internal\AutomationProxies\WindowsButton.cs (1)
616hwndParent = Misc.GetWindow(hwndRoot, NativeMethods.GW_OWNER);
MS\Internal\AutomationProxies\WindowsIPAddress.cs (4)
245IntPtr hwndChild = Misc.GetWindow(_hwnd, NativeMethods.GW_CHILD); 254hwndChild = Misc.GetWindow(hwndChild, NativeMethods.GW_HWNDNEXT); 262IntPtr hwndChild = Misc.GetWindow(_hwnd, NativeMethods.GW_CHILD); 265hwndChild = Misc.GetWindow(hwndChild, NativeMethods.GW_HWNDNEXT);
MS\Internal\AutomationProxies\WindowsMenu.cs (1)
674if (IntPtr.Zero != Misc.GetWindow(hwnd, NativeMethods.GW_OWNER))
MS\Internal\AutomationProxies\WindowsSpinner.cs (2)
280IntPtr hwndChild = Misc.GetWindow(hwndParent, NativeMethods.GW_CHILD); 292hwndChild = Misc.GetWindow(hwndChild, NativeMethods.GW_HWNDNEXT);
MS\Internal\AutomationProxies\WindowsTab.cs (2)
758IntPtr childHwnd = Misc.GetWindow(hwnd, NativeMethods.GW_CHILD); 774childHwnd = Misc.GetWindow(childHwnd, NativeMethods.GW_HWNDLAST);
MS\Internal\AutomationProxies\WinFormsSpinner.cs (3)
132IntPtr hwndFirstChild = Misc.GetWindow(hwnd, NativeMethods.GW_CHILD); 139IntPtr hwndLastChild = Misc.GetWindow(hwndFirstChild, NativeMethods.GW_HWNDLAST); 146if (Misc.GetWindow(hwndFirstChild, NativeMethods.GW_HWNDNEXT) != hwndLastChild)