CDateTimeCtrl::SetMonthCalFont
Establece la fuente que el control secundario del calendario del mes de la fecha y hora de control selector utilizará.
void SetMonthCalFont(
HFONT hFont,
BOOL bRedraw = TRUE
);
Parámetros
hFont
Identificador de la fuente que se establecerá.bRedraw
Especifica si el control se debe volver a dibujar inmediatamente después de establecer la fuente. Establecer este parámetro en TRUE hace que el control para actualizarse.
Comentarios
Esta función miembro implementa el comportamiento del mensaje DTM_SETMCFONTde Win32, como se describe en Windows SDK.
Ejemplo
// The following code example would most likely appear
// in the OnInitDialog function of your dialog class.
// It creates a font (Arial, 10 pixels high) and if successful,
// stores the result in m_MonthFont, a member of your
// dialog class declared as follows:
// CFont m_MonthFont;
// SetMonthCalFont is then called passing in the new font,
// causing the month calendar control to display all
// text and dates with an Arial font.
//initializing the necessary members of the LOGFONT
// structure
LOGFONT lf;
memset(&lf, 0, sizeof(lf));
lf.lfHeight = 10;
_tcscpy_s(lf.lfFaceName, LF_FACESIZE, _T("Arial"));
if (m_MonthFont.CreateFontIndirect(&lf))
{
// if successful, set the month calendar font
m_DateTimeCtrl.SetMonthCalFont((HFONT)m_MonthFont);
}
Nota
Si utiliza este código, deberá crear un miembro de CDialog- m_MonthFont denominado clase derivada de CFontescrito.
Requisitos
encabezado: afxdtctl.h