16 references to GetWindow
UIAutomationClientSideProviders (16)
MS\Internal\AutomationProxies\ClickablePoint.cs (3)
60for (hwnd = Misc.GetWindow(hwnd, NativeMethods.GW_CHILD); hwnd != IntPtr.Zero; hwnd = Misc.GetWindow(hwnd, NativeMethods.GW_HWNDNEXT)) 74hwnd = Misc.GetWindow(hwnd, NativeMethods.GW_HWNDPREV);
MS\Internal\AutomationProxies\WindowsButton.cs (1)
607hwndParent = Misc.GetWindow(hwndRoot, NativeMethods.GW_OWNER);
MS\Internal\AutomationProxies\WindowsIPAddress.cs (4)
242IntPtr hwndChild = Misc.GetWindow(_hwnd, NativeMethods.GW_CHILD); 251hwndChild = Misc.GetWindow(hwndChild, NativeMethods.GW_HWNDNEXT); 259IntPtr hwndChild = Misc.GetWindow(_hwnd, NativeMethods.GW_CHILD); 262hwndChild = Misc.GetWindow(hwndChild, NativeMethods.GW_HWNDNEXT);
MS\Internal\AutomationProxies\WindowsMenu.cs (1)
668if (IntPtr.Zero != Misc.GetWindow(hwnd, NativeMethods.GW_OWNER))
MS\Internal\AutomationProxies\WindowsSpinner.cs (2)
276IntPtr hwndChild = Misc.GetWindow(hwndParent, NativeMethods.GW_CHILD); 288hwndChild = Misc.GetWindow(hwndChild, NativeMethods.GW_HWNDNEXT);
MS\Internal\AutomationProxies\WindowsTab.cs (2)
750IntPtr childHwnd = Misc.GetWindow(hwnd, NativeMethods.GW_CHILD); 766childHwnd = Misc.GetWindow(childHwnd, NativeMethods.GW_HWNDLAST);
MS\Internal\AutomationProxies\WinFormsSpinner.cs (3)
129IntPtr hwndFirstChild = Misc.GetWindow(hwnd, NativeMethods.GW_CHILD); 136IntPtr hwndLastChild = Misc.GetWindow(hwndFirstChild, NativeMethods.GW_HWNDLAST); 143if (Misc.GetWindow(hwndFirstChild, NativeMethods.GW_HWNDNEXT) != hwndLastChild)