创建一个CCommandBar,有菜单也有按钮。 if (!m_wndCommandBar.Create(this) ||
    !m_wndCommandBar.InsertMenuBar(IDR_MAINFRAME) ||
    !m_wndCommandBar.AddAdornments(dwAdornmentFlags) ||
!m_wndCommandBar.AddButtons(nNumButtons,tbButtons) )
{
TRACE0("未能创建 CommandBar\n");
return -1;      // 未能创建
}创建出来的BAR上面,菜单有。按钮也有,
但是按钮上面没有图标。请问要如何做?另外,我程序最小化到托盘的时候没有图标。注: 程序是以前老版本改到VS2005的。