16 references to GET_WINDOW_CMD
System.Windows.Forms (9)
System\Windows\Forms\Application.ParkingWindow.cs (1)
92
HWND 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;
5474
for (HWND hWndChild = PInvoke.GetWindow(this,
GET_WINDOW_CMD
.GW_CHILD);
5476
hWndChild = PInvoke.GetWindow(new HandleRef<HWND>(this, hWndChild),
GET_WINDOW_CMD
.GW_HWNDNEXT))
10961
while (!(hWnd = PInvoke.GetWindow(hWnd,
GET_WINDOW_CMD
.GW_HWNDPREV)).IsNull)
11040
if (PInvoke.GetWindow(control,
GET_WINDOW_CMD
.GW_HWNDPREV) != previous)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (2)
2296
HWND hwnd = PInvoke.GetWindow(this,
GET_WINDOW_CMD
.GW_CHILD);
2306
hwnd = PInvoke.GetWindow(new HandleRef<HWND>(this, hwnd),
GET_WINDOW_CMD
.GW_HWNDNEXT);
System\Windows\Forms\Controls\ListView\ListView.cs (1)
4940
HWND headerWindow = PInvoke.GetWindow(this,
GET_WINDOW_CMD
.GW_CHILD);
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\ControlDesigner.cs (3)
2437
HookChildHandles(PInvoke.GetWindow(hwndChild,
GET_WINDOW_CMD
.GW_CHILD));
2440
hwndChild = PInvoke.GetWindow(hwndChild,
GET_WINDOW_CMD
.GW_HWNDNEXT);
2475
HookChildHandles(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
)"/>
9
public static HWND GetWindow<T>(T hWnd,
GET_WINDOW_CMD
uCmd) where T : IHandle<HWND>