26 references to WM_CHAR
System.Windows.Forms (26)
winforms\Managed\System\WinForms\Application.cs (1)
3651
if (msg.message == NativeMethods.
WM_CHAR
) {
winforms\Managed\System\WinForms\ComboBox.cs (2)
1632
case NativeMethods.
WM_CHAR
:
2236
else if (m.Msg == NativeMethods.
WM_CHAR
) {
winforms\Managed\System\WinForms\Control.cs (8)
10184
else if (msg.Msg == NativeMethods.
WM_CHAR
|| msg.Msg == NativeMethods.WM_SYSCHAR) {
10185
if (msg.Msg == NativeMethods.
WM_CHAR
&& IsInputChar((char)msg.WParam)) {
10272
else if (msg.Msg == NativeMethods.
WM_CHAR
|| msg.Msg == NativeMethods.WM_SYSCHAR) {
10516
if (m.Msg == NativeMethods.
WM_CHAR
|| m.Msg == NativeMethods.WM_SYSCHAR) {
10664
RemovePendingMessages(NativeMethods.
WM_CHAR
, NativeMethods.
WM_CHAR
);
14223
case NativeMethods.
WM_CHAR
:
18508
case NativeMethods.
WM_CHAR
:
winforms\Managed\System\WinForms\DataGridTextBox.cs (4)
112
if (m.Msg == NativeMethods.
WM_CHAR
)
117
if (m.Msg == NativeMethods.
WM_CHAR
) {
195
if (m.Msg == NativeMethods.
WM_CHAR
) return true;
206
if (m.Msg == NativeMethods.
WM_CHAR
) return true;
winforms\Managed\System\WinForms\DataGridViewMethods.cs (2)
22352
(m.Msg == NativeMethods.WM_SYSCHAR || m.Msg == NativeMethods.
WM_CHAR
|| m.Msg == NativeMethods.WM_IME_CHAR))
22378
if (m.Msg == NativeMethods.
WM_CHAR
)
winforms\Managed\System\WinForms\DataGridViewTextBoxEditingControl.cs (2)
294
if (m.Msg == NativeMethods.
WM_CHAR
&&
305
if (m.Msg == NativeMethods.
WM_CHAR
&&
winforms\Managed\System\WinForms\MaskedTextBox.cs (1)
2721
if( m.Msg == NativeMethods.
WM_CHAR
&& base.ImeWmCharsToIgnore > 0 ) {
winforms\Managed\System\WinForms\MessageDecoder.cs (1)
127
case NativeMethods.
WM_CHAR
: text = "WM_CHAR"; break;
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (1)
6650
UnsafeNativeMethods.PostMessage(new HandleRef(this, Handle), NativeMethods.
WM_CHAR
, (IntPtr)keyChar, IntPtr.Zero);
winforms\Managed\System\WinForms\SendKeys.cs (2)
190
AddEvent(new SKEvent(NativeMethods.
WM_CHAR
, character, (int)(oemVal & 0xFFFF), hwnd));
622
if (skEvent.wm == NativeMethods.
WM_CHAR
)
winforms\Managed\System\WinForms\ToolStripManager.cs (1)
1341
case NativeMethods.
WM_CHAR
:
winforms\Managed\System\WinForms\WebBrowser.cs (1)
1845
if (msg.message != NativeMethods.
WM_CHAR