Version 87.1.132
Windows Message Enums
Gratiosly based on http://www.pinvoke.net/default.aspx/Enums/WindowsMessages.html
Namespace:
CefSharp.Wpf
Assembly:
CefSharp.Wpf (in CefSharp.Wpf.dll) Version: 87.1.132.0 (87.1.132.0)
Syntax Members
| Member name | Value | Description |
---|
| KEYDOWN | 256 |
The WM_KEYDOWN message is posted to the window with the keyboard focus when a nonsystem key is pressed. A nonsystem
key is a key that is pressed when the ALT key is not pressed.
|
| KEYUP | 257 |
The WM_KEYUP message is posted to the window with the keyboard focus when a nonsystem key is released. A nonsystem
key is a key that is pressed when the ALT key is not pressed, or a keyboard key that is pressed when a window has the
keyboard focus.
|
| CHAR | 258 |
The WM_CHAR message is posted to the window with the keyboard focus when a WM_KEYDOWN message is translated by the
TranslateMessage function. The WM_CHAR message contains the character code of the key that was pressed.
|
| SYSKEYDOWN | 260 |
The WM_SYSKEYDOWN message is posted to the window with the keyboard focus when the user presses the F10 key (which
activates the menu bar) or holds down the ALT key and then presses another key. It also occurs when no window
currently has the keyboard focus; in this case, the WM_SYSKEYDOWN message is sent to the active window. The window
that receives the message can distinguish between these two contexts by checking the context code in the lParam
parameter.
|
| SYSKEYUP | 261 |
The WM_SYSKEYUP message is posted to the window with the keyboard focus when the user releases a key that was pressed
while the ALT key was held down. It also occurs when no window currently has the keyboard focus; in this case, the
WM_SYSKEYUP message is sent to the active window. The window that receives the message can distinguish between these
two contexts by checking the context code in the lParam parameter.
|
| SYSCHAR | 262 |
The WM_SYSCHAR message is posted to the window with the keyboard focus when a WM_SYSKEYDOWN message is translated by
the TranslateMessage function. It specifies the character code of a system character key — that is, a character key
that is pressed while the ALT key is down.
|
| IME_CHAR | 646 |
Sent to an application when the IME gets a character of the conversion result. A window receives this message through
its WindowProc function.
|
| IME_STARTCOMPOSITION | 269 |
Sent immediately before the IME generates the composition string as a result of a keystroke. A window receives this
message through its WindowProc function.
|
| IME_ENDCOMPOSITION | 270 |
Sent to an application when the IME ends composition. A window receives this message through its WindowProc function.
|
| IME_COMPOSITION | 271 |
Sent to an application when the IME changes composition status as a result of a keystroke. A window receives this
message through its WindowProc function.
|
| IME_SETCONTEXT | 641 |
Sent to an application when a window is activated. A window receives this message through its WindowProc function.
|
See Also