The WM_STYLECHANGED message is sent to a window after the SetWindowLong function has changed one or more of the window’s styles.
WM_STYLECHANGED wStyleType = wParam; // extended or nonextended styles lpss = (LPSTYLESTRUCT) lParam; // structure containing new styles
Value |
Meaning |
GWL_EXSTYLE |
The window’s extended styles have changed. |
GWL_STYLE |
The window’s nonextended styles have changed. |
An application should return zero if it processes this message.