Click or drag to resize

WM Enumeration

Version 75.1.140
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: 75.1.140.0 (75.1.140.0)
Syntax
public enum WM
Members
  Member nameValueDescription
KEYDOWN256 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.
KEYUP257 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.
CHAR258 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.
SYSKEYDOWN260 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.
SYSKEYUP261 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.
SYSCHAR262 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_CHAR646 Sent to an application when the IME gets a character of the conversion result. A window receives this message through its WindowProc function.
IME_STARTCOMPOSITION269 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_ENDCOMPOSITION270 Sent to an application when the IME ends composition. A window receives this message through its WindowProc function.
IME_COMPOSITION271 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_SETCONTEXT641 Sent to an application when a window is activated. A window receives this message through its WindowProc function.
See Also