COleControl::OnFontChanged
呼叫框架,當內建的字型屬性的值變更時。
virtual void OnFontChanged( );
備註
預設實作會呼叫 COleControl::InvalidateControl。 如果控制項子類別化 (Subclass) Windows 控制項,預設實作也會傳送訊息至控制 WM_SETFONT 視窗。
覆寫這個函式是否需要告知,在這個屬性變更之後。
範例
void CMyAxCtrl::OnFontChanged()
{
// Always set it to the container's font
if (m_MyEdit.m_hWnd != NULL)
{
IFontDisp* pFontDisp = NULL;
IFont *pFont = NULL;
HRESULT hr;
// Get the container's FontDisp interface
pFontDisp = AmbientFont();
if (pFontDisp)
{
hr = pFontDisp->QueryInterface(IID_IFont, (LPVOID *) &pFont);
if (FAILED(hr))
{
pFontDisp->Release();
return;
}
}
HFONT hFont = NULL;
if (pFont)
{
pFont->get_hFont(&hFont);
m_MyEdit.SendMessage(WM_SETFONT, (WPARAM)hFont, 0L);
}
pFontDisp->Release();
}
// Invalidate the control
m_MyEdit.Invalidate();
m_MyEdit.UpdateWindow();
COleControl::OnFontChanged();
}
需求
Header: afxctl.h