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