The WM_STYLECHANGING message is sent to a window when the SetWindowLong function is about to change one or more of the window's styles.
WM_STYLECHANGING
wStyleType = wParam; // window styles or extended styles
lpss = (LPSTYLESTRUCT) lParam; // structure containing new styles
Value | Meaning |
---|---|
GWL_EXSTYLE | The window's extended styles are changing. |
GWL_STYLE | The window's styles are changing. |
An application should return zero if it processes this message.
Windows NT: Requires version 3.51 or later.
Windows: Requires Windows 95 or later.
Windows CE: Unsupported.
Header: Declared in winuser.h.
Windows Overview, Window Messages, STYLESTRUCT, WM_STYLECHANGED