26 references to SYSTEM_PARAMETERS_INFO_ACTION
System.Drawing.Common (1)
System\Drawing\SystemFonts.cs (1)
154
if (PInvokeCore.SystemParametersInfo(
SYSTEM_PARAMETERS_INFO_ACTION
.SPI_GETICONTITLELOGFONT, (uint)sizeof(LOGFONT), &itfont, 0))
System.Private.Windows.Core (15)
Windows.Win32.PInvokeCore.USER32.dll.g.cs (2)
1050
internal static unsafe winmdroot.Foundation.BOOL SystemParametersInfo(winmdroot.UI.WindowsAndMessaging.
SYSTEM_PARAMETERS_INFO_ACTION
uiAction, uint uiParam, [Optional] void* pvParam, winmdroot.UI.WindowsAndMessaging.SYSTEM_PARAMETERS_INFO_UPDATE_FLAGS fWinIni)
1058
static extern unsafe winmdroot.Foundation.BOOL LocalExternFunction(winmdroot.UI.WindowsAndMessaging.
SYSTEM_PARAMETERS_INFO_ACTION
uiAction, uint uiParam, [Optional] void* pvParam, winmdroot.UI.WindowsAndMessaging.SYSTEM_PARAMETERS_INFO_UPDATE_FLAGS fWinIni);
Windows\Win32\PInvokeCore.SystemParametersInfo.cs (13)
10
/// <inheritdoc cref="SystemParametersInfo(
SYSTEM_PARAMETERS_INFO_ACTION
, uint, void*, SYSTEM_PARAMETERS_INFO_UPDATE_FLAGS)"/>
11
public static unsafe bool SystemParametersInfo<T>(
SYSTEM_PARAMETERS_INFO_ACTION
uiAction, ref T value)
20
/// <inheritdoc cref="SystemParametersInfo(
SYSTEM_PARAMETERS_INFO_ACTION
, uint, void*, SYSTEM_PARAMETERS_INFO_UPDATE_FLAGS)"/>
21
public static unsafe int SystemParametersInfoInt(
SYSTEM_PARAMETERS_INFO_ACTION
uiAction)
28
/// <inheritdoc cref="SystemParametersInfo(
SYSTEM_PARAMETERS_INFO_ACTION
, uint, void*, SYSTEM_PARAMETERS_INFO_UPDATE_FLAGS)"/>
29
public static unsafe bool SystemParametersInfo(
SYSTEM_PARAMETERS_INFO_ACTION
uiAction, ref bool value, uint fWinIni = 0)
37
/// <inheritdoc cref="SystemParametersInfo(
SYSTEM_PARAMETERS_INFO_ACTION
, uint, void*, SYSTEM_PARAMETERS_INFO_UPDATE_FLAGS)"/>
38
public static unsafe bool SystemParametersInfoBool(
SYSTEM_PARAMETERS_INFO_ACTION
uiAction)
45
/// <inheritdoc cref="SystemParametersInfo(
SYSTEM_PARAMETERS_INFO_ACTION
, uint, void*, SYSTEM_PARAMETERS_INFO_UPDATE_FLAGS)"/>
54
SYSTEM_PARAMETERS_INFO_ACTION
.SPI_GETHIGHCONTRAST,
61
/// <inheritdoc cref="SystemParametersInfo(
SYSTEM_PARAMETERS_INFO_ACTION
, uint, void*, SYSTEM_PARAMETERS_INFO_UPDATE_FLAGS)"/>
68
SYSTEM_PARAMETERS_INFO_ACTION
.SPI_GETNONCLIENTMETRICS,
87
(uint)
SYSTEM_PARAMETERS_INFO_ACTION
.SPI_GETNONCLIENTMETRICS,
System.Windows.Forms (6)
System\Windows\Forms\Control.cs (3)
12606
SYSTEM_PARAMETERS_INFO_ACTION
action = (
SYSTEM_PARAMETERS_INFO_ACTION
)(uint)m.WParamInternal;
12611
if (action is
SYSTEM_PARAMETERS_INFO_ACTION
.SPI_SETNONCLIENTMETRICS && m.LParamInternal == 0)
System\Windows\Forms\Form.cs (1)
4391
&& PInvokeCore.SystemParametersInfo(
SYSTEM_PARAMETERS_INFO_ACTION
.SPI_GETSNAPTODEFBUTTON, ref data)
System\Windows\Forms\Input\InputLanguage.cs (1)
63
PInvokeCore.SystemParametersInfo(
SYSTEM_PARAMETERS_INFO_ACTION
.SPI_GETDEFAULTINPUTLANG, ref handle);
System\Windows\Forms\SystemInformation.cs (1)
12
using static Windows.Win32.UI.WindowsAndMessaging.
SYSTEM_PARAMETERS_INFO_ACTION
;
System.Windows.Forms.TestUtilities (1)
SystemEventsHelper.cs (1)
8
using static Windows.Win32.UI.WindowsAndMessaging.
SYSTEM_PARAMETERS_INFO_ACTION
;
System.Windows.Forms.UI.IntegrationTests (3)
Infra\ControlTestBase.cs (3)
42
Assert.True(PInvokeCore.SystemParametersInfo(
SYSTEM_PARAMETERS_INFO_ACTION
.SPI_GETCLIENTAREAANIMATION, ref _clientAreaAnimation));
43
Assert.True(PInvokeCore.SystemParametersInfo(
SYSTEM_PARAMETERS_INFO_ACTION
.SPI_SETCLIENTAREAANIMATION, ref disabled, SPIF_SENDCHANGE));
101
Assert.True(PInvokeCore.SystemParametersInfo(
SYSTEM_PARAMETERS_INFO_ACTION
.SPI_SETCLIENTAREAANIMATION, ref _clientAreaAnimation));