CWnd::OnFontChange

Syntax

afx_msg void OnFontChange();

Remarks

All top-level windows in the system receive an OnFontChange call after the application changes the pool of font resources.

An application that adds or removes fonts from the system (for example, through the AddFontResource or RemoveFontResource Window function) should send the WM_FONTCHANGE message to all top-level windows.

To send the WM_FONTCHANGE message to all top-level windows, an application can use the SendMessage Windows function to send the WM_FONTCHANGE message with the hWnd parameter set to 0xFFFF.

This message-handler member function calls the Default member function. Override this member function in your derived class to handle the WM_FONTCHANGE message.

See Also

::AddFontResource, ::RemoveFontResource, ::SendMessage, CWnd::Default, WM_FONTCHANGE