16 references to GET_WINDOW_CMD
System.Windows.Forms (9)
System\Windows\Forms\Application.ParkingWindow.cs (1)
92HWND hwndChild = PInvoke.GetWindow(this, GET_WINDOW_CMD.GW_CHILD);
System\Windows\Forms\Control.cs (5)
2344!(next = PInvoke.GetWindow(prev, GET_WINDOW_CMD.GW_HWNDPREV)).IsNull; 5474for (HWND hWndChild = PInvoke.GetWindow(this, GET_WINDOW_CMD.GW_CHILD); 5476hWndChild = PInvoke.GetWindow(new HandleRef<HWND>(this, hWndChild), GET_WINDOW_CMD.GW_HWNDNEXT)) 10961while (!(hWnd = PInvoke.GetWindow(hWnd, GET_WINDOW_CMD.GW_HWNDPREV)).IsNull) 11040if (PInvoke.GetWindow(control, GET_WINDOW_CMD.GW_HWNDPREV) != previous)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (2)
2296HWND hwnd = PInvoke.GetWindow(this, GET_WINDOW_CMD.GW_CHILD); 2306hwnd = PInvoke.GetWindow(new HandleRef<HWND>(this, hwnd), GET_WINDOW_CMD.GW_HWNDNEXT);
System\Windows\Forms\Controls\ListView\ListView.cs (1)
4940HWND headerWindow = PInvoke.GetWindow(this, GET_WINDOW_CMD.GW_CHILD);
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\ControlDesigner.cs (3)
2437HookChildHandles(PInvoke.GetWindow(hwndChild, GET_WINDOW_CMD.GW_CHILD)); 2440hwndChild = PInvoke.GetWindow(hwndChild, GET_WINDOW_CMD.GW_HWNDNEXT); 2475HookChildHandles(PInvoke.GetWindow(Control, GET_WINDOW_CMD.GW_CHILD));
System.Windows.Forms.Primitives (4)
Windows.Win32.PInvoke.USER32.dll.g.cs (2)
1956 internal static winmdroot.Foundation.HWND GetWindow(winmdroot.Foundation.HWND hWnd, winmdroot.UI.WindowsAndMessaging.GET_WINDOW_CMD uCmd) 1964 static extern winmdroot.Foundation.HWND LocalExternFunction(winmdroot.Foundation.HWND hWnd, winmdroot.UI.WindowsAndMessaging.GET_WINDOW_CMD uCmd);
Windows\Win32\PInvoke.GetWindow.cs (2)
8/// <inheritdoc cref="GetWindow(HWND, GET_WINDOW_CMD)"/> 9public static HWND GetWindow<T>(T hWnd, GET_WINDOW_CMD uCmd) where T : IHandle<HWND>