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