COleControl::OnFontChanged

调用由结构,当常用字体属性值已更改。

virtual void OnFontChanged( );

备注

默认实现调用 COleControl::InvalidateControl。如果控件subclassing 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

请参见

参考

COleControl选件类

层次结构图

COleControl::GetFont

COleControl::InternalGetFont

COleControl::InvalidateControl