''' <summary>
'''An application sends a WM_CLEAR message to an edit control or combo box to delete (clear) the current selection if any from the edit control.
''' </summary>
''' <remarks></remarks>
WM_CLEAR = &H303
''' <summary>
'''The WM_CLOSE message is sent as a signal that a window or an application should terminate.
''' </summary>
''' <remarks></remarks>
WM_CLOSE = &H10
''' <summary>
'''The WM_COMMAND message is sent when the user selects a command item from a menu when a control sends a notification message to its parent window or when an accelerator keystroke is translated.
''' </summary>
''' <remarks></remarks>
WM_COMMAND = &H111
''' <summary>
'''The WM_COMPACTING message is sent to all top-level windows when the system detects more than 12.5 percent of system time over a 30- to 60-second interval is being spent compacting memory. This indicates that system memory is low.
''' </summary>
''' <remarks></remarks>
WM_COMPACTING = &H41
''' <summary>
'''The system sends the WM_COMPAREITEM message to determine the relative position of a new item in the sorted list of an owner-drawn combo box or list box. Whenever the application adds a new item the system sends this message to the owner of a combo box or list box created with the CBS_SORT or LBS_SORT style.
''' </summary>
''' <remarks></remarks>
WM_COMPAREITEM = &H39
''' <summary>
'''The WM_CONTEXTMENU message notifies a window that the user clicked the right mouse button (right-clicked) in the window.
''' </summary>
''' <remarks></remarks>
WM_CONTEXTMENU = &H7B
''' <summary>
'''An application sends the WM_COPY message to an edit control or combo box to copy the current selection to the clipboard in CF_TEXT format.
''' </summary>
''' <remarks></remarks>
WM_COPY = &H301
''' <summary>
'''An application sends the WM_COPYDATA message to pass data to another application.
''' </summary>
''' <remarks></remarks>
WM_COPYDATA = &H4A
''' <summary>
'''The WM_CREATE message is sent when an application requests that a window be created by calling the CreateWindowEx or CreateWindow function. (The message is sent before the function returns.) The window procedure of the new window receives this message after the window is created but before the window becomes visible.
''' </summary>
''' <remarks></remarks>
WM_CREATE = &H1
''' <summary>
'''The WM_CTLCOLORBTN message is sent to the parent window of a button before drawing the button. The parent window can change the button's text and background colors. However only owner-drawn buttons respond to the parent window processing this message.
''' </summary>
''' <remarks></remarks>
WM_CTLCOLORBTN = &H135
''' <summary>
'''The WM_CTLCOLORDLG message is sent to a dialog box before the system draws the dialog box. By responding to this message the dialog box can set its text and background colors using the specified display device context handle.
''' </summary>
''' <remarks></remarks>
WM_CTLCOLORDLG = &H136
''' <summary>
'''An edit control that is not read-only or disabled sends the WM_CTLCOLOREDIT message to its parent window when the control is about to be drawn. By responding to this message the parent window can use the specified device context handle to set the text and background colors of the edit control.
''' </summary>
''' <remarks></remarks>
WM_CTLCOLOREDIT = &H133
''' <summary>
'''Sent to the parent window of a list box before the system draws the list box. By responding to this message the parent window can set the text and background colors of the list box by using the specified display device context handle.
''' </summary>
''' <remarks></remarks>
WM_CTLCOLORLISTBOX = &H134
''' <summary>
'''The WM_CTLCOLORMSGBOX message is sent to the owner window of a message box before Windows draws the message box. By responding to this message the owner window can set the text and background colors of the message box by using the given display device context handle.
''' </summary>
''' <remarks></remarks>
WM_CTLCOLORMSGBOX = &H132
''' <summary>
'''The WM_CTLCOLORSCROLLBAR message is sent to the parent window of a scroll bar control when the control is about to be drawn. By responding to this message the parent window can use the display context handle to set the background color of the scroll bar control.
''' </summary>
''' <remarks></remarks>
WM_CTLCOLORSCROLLBAR = &H137
''' <summary>
'''A static control or an edit control that is read-only or disabled sends the WM_CTLCOLORSTATIC message to its parent window when the control is about to be drawn. By responding to this message the parent window can use the specified device context handle to set the text and background colors of the static control.
''' </summary>
''' <remarks></remarks>
WM_CTLCOLORSTATIC = &H138
''' <summary>
'''An application sends a WM_CUT message to an edit control or combo box to delete (cut) the current selection if any in the edit control and copy the deleted text to the clipboard in CF_TEXT format.
''' </summary>
''' <remarks></remarks>
WM_CUT = &H300
''' <summary>
'''The WM_DEADCHAR message is posted to the window with the keyboard focus when a WM_KEYUP message is translated by the TranslateMessage function. WM_DEADCHAR specifies a character code generated by a dead key. A dead key is a key that generates a character such as the umlaut (double-dot) that is combined with another character to form a composite character. For example the umlaut-O character (?) is generated by typing the dead key for the umlaut character and then typing the O key.
''' </summary>
''' <remarks></remarks>
WM_DEADCHAR = &H103
''' <summary>
'''Sent to the owner of a list box or combo box when the list box or combo box is destroyed or when items are removed by the LB_DELETESTRING LB_RESETCONTENT CB_DELETESTRING or CB_RESETCONTENT message. The system sends a WM_DELETEITEM message for each deleted item. The system sends the WM_DELETEITEM message for any deleted list box or combo box item with nonzero item data.
''' </summary>
''' <remarks></remarks>
WM_DELETEITEM = &H2D
''' <summary>
'''The WM_DESTROY message is sent when a window is being destroyed. It is sent to the window procedure of the window being destroyed after the window is removed from the screen. This message is sent first to the window being destroyed and then to the child windows (if any) as they are destroyed. During the processing of the message it can be assumed that all child windows still exist.
''' </summary>
''' <remarks></remarks>
WM_DESTROY = &H2
''' <summary>
'''The WM_DESTROYCLIPBOARD message is sent to the clipboard owner when a call to the EmptyClipboard function empties the clipboard.
''' </summary>
''' <remarks></remarks>
WM_DESTROYCLIPBOARD = &H307
''' <summary>
'''Notifies an application of a change to the hardware configuration of a device or the computer.
''' </summary>
''' <remarks></remarks>
WM_DEVICECHANGE = &H219
''' <summary>
'''The WM_DEVMODECHANGE message is sent to all top-level windows whenever the user changes device-mode settings.
''' </summary>
''' <remarks></remarks>
WM_DEVMODECHANGE = &H1B
''' <summary>
'''The WM_DISPLAYCHANGE message is sent to all windows when the display resolution has changed.
''' </summary>
''' <remarks></remarks>
WM_DISPLAYCHANGE = &H7E
''' <summary>
'''The WM_DRAWCLIPBOARD message is sent to the first window in the clipboard viewer chain when the content of the clipboard changes. This enables a clipboard viewer window to display the new content of the clipboard.
''' </summary>
''' <remarks></remarks>
WM_DRAWCLIPBOARD = &H308
''' <summary>
'''The WM_DRAWITEM message is sent to the parent window of an owner-drawn button combo box list box or menu when a visual aspect of the button combo box list box or menu has changed.
''' </summary>
''' <remarks></remarks>
WM_DRAWITEM = &H2B
''' <summary>
'''Sent when the user drops a file on the window of an application that has registered itself as a recipient of dropped files.
''' </summary>
''' <remarks></remarks>
WM_DROPFILES = &H233
''' <summary>
'''The WM_ENABLE message is sent when an application changes the enabled state of a window. It is sent to the window whose enabled state is changing. This message is sent before the EnableWindow function returns but after the enabled state (WS_DISABLED style bit) of the window has changed.
''' </summary>
''' <remarks></remarks>
WM_ENABLE = &HA