Condividi tramite


COleControl::OnFontChanged

Chiamato dal framework quando il valore delle proprietà predefinite predefinito è cambiato.

virtual void OnFontChanged( );

Note

l'implementazione predefinita chiama COleControl::InvalidateControl.Se il controllo è creazione di una sottoclasse di un controllo Windows, l'implementazione predefinita anche inviato un messaggio WM_SETFONT la finestra del controllo.

Eseguire l'override della funzione se si desidera che la notifica dopo modifiche di questa proprietà.

Esempio

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();
}

Requisiti

Header: afxctl.h

Vedere anche

Riferimenti

Classe di COleControl

Grafico della gerarchia

COleControl::GetFont

COleControl::InternalGetFont

COleControl::InvalidateControl