Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
To use the ribbon resource in your application, modify the application to load the ribbon resource.
To load a ribbon resource
- Declare the
Ribbon Control
object in theCMainFrame
class.
CMFCRibbonBar m_wndRibbonBar;
- In
CMainFrame::OnCreate
, create and initialize the Ribbon Control.
if (!m_wndRibbonBar.Create (this))
{
return -1;
}
if (!m_wndRibbonBar.LoadFromResource(IDR_RIBBON))
{
return -1;
}