9 references to GetWindow
System.Windows.Forms (9)
winforms\Managed\System\WinForms\Application.cs (1)
4167
IntPtr hwndChild = UnsafeNativeMethods.
GetWindow
(new HandleRef(this, Handle), NativeMethods.GW_CHILD);
winforms\Managed\System\WinForms\ComboBox.cs (2)
2440
IntPtr hwnd = UnsafeNativeMethods.
GetWindow
(new HandleRef(this, Handle), NativeMethods.GW_CHILD);
2451
hwnd = UnsafeNativeMethods.
GetWindow
(new HandleRef(this, hwnd), NativeMethods.GW_HWNDNEXT);
winforms\Managed\System\WinForms\Control.cs (5)
3015
(next = UnsafeNativeMethods.
GetWindow
(new HandleRef(null, prev), NativeMethods.GW_HWNDPREV)) != IntPtr.Zero;
6802
for (IntPtr hWndChild = UnsafeNativeMethods.
GetWindow
(new HandleRef(null, hWndParent), NativeMethods.GW_CHILD);
6804
hWndChild = UnsafeNativeMethods.
GetWindow
(new HandleRef(null, hWndChild), NativeMethods.GW_HWNDNEXT)) {
12644
while ((hWnd = UnsafeNativeMethods.
GetWindow
(new HandleRef(null, hWnd), NativeMethods.GW_HWNDPREV)) != IntPtr.Zero) {
12705
if (UnsafeNativeMethods.
GetWindow
(new HandleRef(ctl.window, ctl.Handle), NativeMethods.GW_HWNDPREV) != prevHandle) {
winforms\Managed\System\WinForms\ListView.cs (1)
4567
IntPtr hdrHWND = UnsafeNativeMethods.
GetWindow
(new HandleRef(this, this.Handle), NativeMethods.GW_CHILD);