55 references to WM_REFLECT
System.Private.Windows.Core (20)
Windows\Win32\MessageId.cs (20)
23
public const uint WM_REFLECT_NOTIFY =
WM_REFLECT
+ PInvokeCore.WM_NOTIFY;
24
public const uint WM_REFLECT_NOTIFYFORMAT =
WM_REFLECT
+ PInvokeCore.WM_NOTIFYFORMAT;
25
public const uint WM_REFLECT_COMMAND =
WM_REFLECT
+ PInvokeCore.WM_COMMAND;
26
public const uint WM_REFLECT_CHARTOITEM =
WM_REFLECT
+ PInvokeCore.WM_CHARTOITEM;
27
public const uint WM_REFLECT_VKEYTOITEM =
WM_REFLECT
+ PInvokeCore.WM_VKEYTOITEM;
28
public const uint WM_REFLECT_DRAWITEM =
WM_REFLECT
+ PInvokeCore.WM_DRAWITEM;
29
public const uint WM_REFLECT_MEASUREITEM =
WM_REFLECT
+ PInvokeCore.WM_MEASUREITEM;
30
public const uint WM_REFLECT_HSCROLL =
WM_REFLECT
+ PInvokeCore.WM_HSCROLL;
31
public const uint WM_REFLECT_VSCROLL =
WM_REFLECT
+ PInvokeCore.WM_VSCROLL;
32
public const uint WM_REFLECT_CTLCOLOR =
WM_REFLECT
+ PInvokeCore.WM_CTLCOLOR;
33
public const uint WM_REFLECT_CTLCOLORBTN =
WM_REFLECT
+ PInvokeCore.WM_CTLCOLORBTN;
34
public const uint WM_REFLECT_CTLCOLORDLG =
WM_REFLECT
+ PInvokeCore.WM_CTLCOLORDLG;
35
public const uint WM_REFLECT_CTLCOLORMSGBOX =
WM_REFLECT
+ PInvokeCore.WM_CTLCOLORMSGBOX;
36
public const uint WM_REFLECT_CTLCOLORSCROLLBAR =
WM_REFLECT
+ PInvokeCore.WM_CTLCOLORSCROLLBAR;
37
public const uint WM_REFLECT_CTLCOLOREDIT =
WM_REFLECT
+ PInvokeCore.WM_CTLCOLOREDIT;
38
public const uint WM_REFLECT_CTLCOLORLISTBOX =
WM_REFLECT
+ PInvokeCore.WM_CTLCOLORLISTBOX;
39
public const uint WM_REFLECT_CTLCOLORSTATIC =
WM_REFLECT
+ PInvokeCore.WM_CTLCOLORSTATIC;
326
if (text is null && ((_id &
WM_REFLECT
) ==
WM_REFLECT
))
328
string subtext = ((MessageId)(_id -
WM_REFLECT
)).MessageIdToString() ?? "???";
System.Windows.Forms (5)
System\Windows\Forms\Application.cs (1)
331
bool success = PInvoke.SendMessageCallback(hwnd, PInvokeCore.WM_SYSCOLORCHANGE + MessageId.
WM_REFLECT
, () => complete = true);
System\Windows\Forms\Control.cs (4)
9407
MessageId.
WM_REFLECT
| m.MsgInternal,
11746
MessageId.
WM_REFLECT
| m.MsgInternal,
11753
MessageId.
WM_REFLECT
| m.MsgInternal,
11801
MessageId.
WM_REFLECT
| m.MsgInternal,
System.Windows.Forms.Tests (29)
System\Windows\Forms\ListBoxTests.cs (1)
3327
PInvokeCore.SendMessage(control, MessageId.
WM_REFLECT
| PInvokeCore.WM_COMMAND, WPARAM.MAKEWPARAM(0, (int)PInvoke.LBN_SELCHANGE));
System\Windows\Forms\ScrollBarTests.cs (2)
2710
foreach (MessageId msg in new MessageId[] { MessageId.
WM_REFLECT
| PInvokeCore.WM_HSCROLL, MessageId.
WM_REFLECT
| PInvokeCore.WM_VSCROLL })
TextBoxBaseTests.cs (2)
7550
Msg = (int)(MessageId.
WM_REFLECT
| PInvokeCore.WM_COMMAND),
7586
Msg = (int)(MessageId.
WM_REFLECT
| PInvokeCore.WM_COMMAND),
TrackBarTests.cs (24)
3152
yield return new object[] { MessageId.
WM_REFLECT
| PInvokeCore.WM_HSCROLL, IntPtr.Zero };
3153
yield return new object[] { MessageId.
WM_REFLECT
| PInvokeCore.WM_HSCROLL, PARAM.FromLowHigh(-1, int.MaxValue) };
3154
yield return new object[] { MessageId.
WM_REFLECT
| PInvokeCore.WM_HSCROLL, PARAM.FromLowHigh(0, int.MaxValue) };
3155
yield return new object[] { MessageId.
WM_REFLECT
| PInvokeCore.WM_HSCROLL, PARAM.FromLowHigh(1, int.MaxValue) };
3156
yield return new object[] { MessageId.
WM_REFLECT
| PInvokeCore.WM_HSCROLL, PARAM.FromLowHigh(2, int.MaxValue) };
3157
yield return new object[] { MessageId.
WM_REFLECT
| PInvokeCore.WM_HSCROLL, PARAM.FromLowHigh(3, int.MaxValue) };
3158
yield return new object[] { MessageId.
WM_REFLECT
| PInvokeCore.WM_HSCROLL, PARAM.FromLowHigh(4, int.MaxValue) };
3159
yield return new object[] { MessageId.
WM_REFLECT
| PInvokeCore.WM_HSCROLL, PARAM.FromLowHigh(5, int.MaxValue) };
3160
yield return new object[] { MessageId.
WM_REFLECT
| PInvokeCore.WM_HSCROLL, PARAM.FromLowHigh(6, int.MaxValue) };
3161
yield return new object[] { MessageId.
WM_REFLECT
| PInvokeCore.WM_HSCROLL, PARAM.FromLowHigh(7, int.MaxValue) };
3162
yield return new object[] { MessageId.
WM_REFLECT
| PInvokeCore.WM_HSCROLL, PARAM.FromLowHigh(8, int.MaxValue) };
3163
yield return new object[] { MessageId.
WM_REFLECT
| PInvokeCore.WM_HSCROLL, PARAM.FromLowHigh(9, int.MaxValue) };
3165
yield return new object[] { MessageId.
WM_REFLECT
| PInvokeCore.WM_VSCROLL, IntPtr.Zero };
3166
yield return new object[] { MessageId.
WM_REFLECT
| PInvokeCore.WM_VSCROLL, PARAM.FromLowHigh(-1, int.MaxValue) };
3167
yield return new object[] { MessageId.
WM_REFLECT
| PInvokeCore.WM_VSCROLL, PARAM.FromLowHigh(0, int.MaxValue) };
3168
yield return new object[] { MessageId.
WM_REFLECT
| PInvokeCore.WM_VSCROLL, PARAM.FromLowHigh(1, int.MaxValue) };
3169
yield return new object[] { MessageId.
WM_REFLECT
| PInvokeCore.WM_VSCROLL, PARAM.FromLowHigh(2, int.MaxValue) };
3170
yield return new object[] { MessageId.
WM_REFLECT
| PInvokeCore.WM_VSCROLL, PARAM.FromLowHigh(3, int.MaxValue) };
3171
yield return new object[] { MessageId.
WM_REFLECT
| PInvokeCore.WM_VSCROLL, PARAM.FromLowHigh(4, int.MaxValue) };
3172
yield return new object[] { MessageId.
WM_REFLECT
| PInvokeCore.WM_VSCROLL, PARAM.FromLowHigh(5, int.MaxValue) };
3173
yield return new object[] { MessageId.
WM_REFLECT
| PInvokeCore.WM_VSCROLL, PARAM.FromLowHigh(6, int.MaxValue) };
3174
yield return new object[] { MessageId.
WM_REFLECT
| PInvokeCore.WM_VSCROLL, PARAM.FromLowHigh(7, int.MaxValue) };
3175
yield return new object[] { MessageId.
WM_REFLECT
| PInvokeCore.WM_VSCROLL, PARAM.FromLowHigh(8, int.MaxValue) };
3176
yield return new object[] { MessageId.
WM_REFLECT
| PInvokeCore.WM_VSCROLL, PARAM.FromLowHigh(9, int.MaxValue) };
System.Windows.Forms.TestUtilities (1)
SystemEventsHelper.cs (1)
87
PInvokeCore.SendMessage(window, msg | MessageId.
WM_REFLECT
, wParam);