MyFont.CreateFont( -20, 0, 0, 0, 700, 0, 0, 0, 0, 0, 0, 0, 0, _T("宋体") );
m_wndShortcutsBar.SetButtonsFont(&MyFont);

// Create first page:
m_wndShortcutsPane1.Create (&m_wndShortcutsBar, dwDefaultToolbarStyle, ID_SHORTCUTS_PANE_1);
m_wndShortcutsPane1.SetOwner (this);
m_wndShortcutsPane1.EnableTextLabels ();
m_wndShortcutsPane1.EnableDocking (CBRS_ALIGN_ANY);

m_wndShortcutsPane1.AddButton (images.ExtractIcon (0), _T("1"), ID_SHORTCUT_1);
m_wndShortcutsPane1.AddButton (images.ExtractIcon (1), _T("2"), ID_SHORTCUT_2);
m_wndShortcutsPane1.AddButton (images.ExtractIcon (2), _T("3"), ID_SHORTCUT_3); pShortcutsBarContainer->AddTab (&m_wndShortcutsPane1, _T("题目"), -1, FALSE);
m_wndShortcutsPane1.EnableDocking (CBRS_ALIGN_ANY);
其中使用SetButtonsFont(&MyFont);设置了“题目”的字体,字体变大之后,可是所在的标签大小没变化,字就显示不全了,该怎么让标签的高度加大呢?还有就是1、2、3的字体该怎么设置呢?请高手指点,谢谢!