在 MFC 中,CMFCRibbonFontComboBox 类确实有名为 SetFont 的公共方法。该方法用于设置字体选择框中的当前选择字体。

以下是 SetFont 方法的基本声明:
virtual void SetFont(LPCTSTR lpszName);

该方法接受一个 LPCTSTR 类型的参数,表示要设置的字体的名称。调用该方法将会选中字体选择框中具有相应名称的字体。

以下是一个示例:
CMFCRibbonFontComboBox fontComboBox;

// 设置字体选择框中的当前字体为 "Arial"
fontComboBox.SetFont(_T("Arial"));

这将会将字体选择框中的当前选择字体设置为 "Arial"。




转载请注明出处:http://www.zyzy.cn/article/detail/19903/MFC/CMFCRibbonFontComboBox