42 references to SHOW_WINDOW_CMD
System.Windows.Forms (34)
System\Windows\Forms\Control.cs (3)
3606
internal virtual
SHOW_WINDOW_CMD
ShowParams =>
SHOW_WINDOW_CMD
.SW_SHOW;
11162
PInvoke.ShowWindow(HWND, value ? ShowParams :
SHOW_WINDOW_CMD
.SW_HIDE);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (1)
1478
PInvoke.ShowWindow(_dropDownHolder,
SHOW_WINDOW_CMD
.SW_SHOWNA);
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (2)
757
internal override
SHOW_WINDOW_CMD
ShowParams =>
SHOW_WINDOW_CMD
.SW_SHOWNOACTIVATE;
System\Windows\Forms\Dialogs\CommonDialogs\FontDialog.cs (2)
347
PInvoke.ShowWindow(hWndCtl,
SHOW_WINDOW_CMD
.SW_HIDE);
349
PInvoke.ShowWindow(hWndCtl,
SHOW_WINDOW_CMD
.SW_HIDE);
System\Windows\Forms\Form.cs (22)
1852
internal override
SHOW_WINDOW_CMD
ShowParams
1877
return
SHOW_WINDOW_CMD
.SW_SHOWMAXIMIZED;
1879
return
SHOW_WINDOW_CMD
.SW_SHOWMINIMIZED;
1884
return
SHOW_WINDOW_CMD
.SW_SHOWNOACTIVATE;
1887
return
SHOW_WINDOW_CMD
.SW_SHOW;
2218
PInvoke.ShowWindow(this,
SHOW_WINDOW_CMD
.SW_SHOW);
2564
PInvoke.ShowWindow(this,
SHOW_WINDOW_CMD
.SW_NORMAL);
2567
PInvoke.ShowWindow(this,
SHOW_WINDOW_CMD
.SW_MAXIMIZE);
2570
PInvoke.ShowWindow(this,
SHOW_WINDOW_CMD
.SW_MINIMIZE);
6533
case
SHOW_WINDOW_CMD
.SW_NORMAL:
6534
case
SHOW_WINDOW_CMD
.SW_RESTORE:
6535
case
SHOW_WINDOW_CMD
.SW_SHOW:
6536
case
SHOW_WINDOW_CMD
.SW_SHOWNA:
6537
case
SHOW_WINDOW_CMD
.SW_SHOWNOACTIVATE:
6544
case
SHOW_WINDOW_CMD
.SW_SHOWMAXIMIZED:
6551
case
SHOW_WINDOW_CMD
.SW_SHOWMINIMIZED:
6552
case
SHOW_WINDOW_CMD
.SW_MINIMIZE:
6553
case
SHOW_WINDOW_CMD
.SW_SHOWMINNOACTIVE:
6560
case
SHOW_WINDOW_CMD
.SW_HIDE:
6676
switch ((
SHOW_WINDOW_CMD
)si.wShowWindow)
6678
case
SHOW_WINDOW_CMD
.SW_MAXIMIZE:
6681
case
SHOW_WINDOW_CMD
.SW_MINIMIZE:
System\Windows\Forms\Help\Help.cs (1)
220
PInvoke.ShellExecute(handle.Handle, lpOperation: null, executable ?? fileName, executable is not null ? fileName : null, lpDirectory: null,
SHOW_WINDOW_CMD
.SW_NORMAL);
System\Windows\Forms\ToolTip\ToolTip.cs (3)
306
(control.ShowParams & (
SHOW_WINDOW_CMD
)0xF) !=
SHOW_WINDOW_CMD
.SW_SHOWNOACTIVATE)
2125
PInvoke.ShowWindow(this,
SHOW_WINDOW_CMD
.SW_HIDE);
System.Windows.Forms.Primitives (8)
_generated\423\Windows.Win32.PInvoke.SHELL32.dll.g.cs (3)
191
/// <inheritdoc cref="ShellExecute(winmdroot.Foundation.HWND, winmdroot.Foundation.PCWSTR, winmdroot.Foundation.PCWSTR, winmdroot.Foundation.PCWSTR, winmdroot.Foundation.PCWSTR, winmdroot.UI.WindowsAndMessaging.
SHOW_WINDOW_CMD
)"/>
194
internal static unsafe winmdroot.Foundation.HINSTANCE ShellExecute([Optional] winmdroot.Foundation.HWND hwnd, [Optional] string lpOperation, string lpFile, [Optional] string lpParameters, [Optional] string lpDirectory, winmdroot.UI.WindowsAndMessaging.
SHOW_WINDOW_CMD
nShowCmd)
249
internal static extern winmdroot.Foundation.HINSTANCE ShellExecute([Optional] winmdroot.Foundation.HWND hwnd, [Optional] winmdroot.Foundation.PCWSTR lpOperation, winmdroot.Foundation.PCWSTR lpFile, [Optional] winmdroot.Foundation.PCWSTR lpParameters, [Optional] winmdroot.Foundation.PCWSTR lpDirectory, winmdroot.UI.WindowsAndMessaging.
SHOW_WINDOW_CMD
nShowCmd);
_generated\426\Windows.Win32.PInvoke.USER32.dll.g.cs (1)
4050
internal static extern winmdroot.Foundation.BOOL ShowWindow(winmdroot.Foundation.HWND hWnd, winmdroot.UI.WindowsAndMessaging.
SHOW_WINDOW_CMD
nCmdShow);
_generated\649\Windows.Win32.WINDOWPLACEMENT.g.cs (2)
60
internal
SHOW_WINDOW_CMD
showCmd
62
get => (
SHOW_WINDOW_CMD
)this._showCmd;
Windows\Win32\PInvoke.ShowWindow.cs (2)
8
/// <inheritdoc cref="ShowWindow(HWND,
SHOW_WINDOW_CMD
)"/>
9
public static BOOL ShowWindow<T>(T hWnd,
SHOW_WINDOW_CMD
nCmdShow) where T : IHandle<HWND>