CWnd::OnStyleChanged

afx_msg void OnStyleChanged( int nStyleType, LPSTYLESTRUCT lpStyleStruct );

Parameters

nStyleType

Specifies whether the window's extended or nonextended styles have changed. This parameter can be a combination of the following values:

lpStyleStruct

Points to a STYLESTRUCT structure that contains the new styles for the window. An application can examine the styles, but it can not change them.

Remarks

The framework calls this member function after the ::SetWindowLong function has changed one or more of the window's styles.

Note   This member function is called by the framework to allow your application to handle a Windows message. The parameters passed to your function reflect the parameters received by the framework when the message was received. If you call the base-class implementation of this function, that implementation will use the parameters originally passed with the message and not the parameters you supply to the function.

CWnd OverviewClass MembersHierarchy Chart

See Also   WM_STYLECHANGED