CMFCRibbonMainPanel Class
Implements a ribbon panel that displays when you click the CMFCRibbonApplicationButton.
class CMFCRibbonMainPanel : public CMFCRibbonPanel
Name | Description |
---|---|
CMFCRibbonMainPanel::CMFCRibbonMainPanel |
Default constructor. |
CMFCRibbonMainPanel::~CMFCRibbonMainPanel |
Destructor. |
Name | Description |
---|---|
CMFCRibbonMainPanel::Add | Adds a ribbon element to the left pane of the application button panel. (Overrides CMFCRibbonPanel::Add.) |
CMFCRibbonMainPanel::AddRecentFilesList | Adds a text string to the recent files list menu. |
CMFCRibbonMainPanel::AddToBottom | Adds a ribbon element to the bottom pane of the ribbon application panel. |
CMFCRibbonMainPanel::AddToRight | Adds a ribbon element to the right pane of the application button panel. |
CMFCRibbonMainPanel::CreateObject |
Used by the framework to create a dynamic instance of this class type. |
CMFCRibbonMainPanel::GetCommandsFrame | Returns a rectangle that represents the area of the ribbon main panel. |
CMFCRibbonMainPanel::GetThisClass |
Used by the framework to obtain a pointer to the CRuntimeClass object that is associated with this class type. |
The framework displays the CMFCRibbonMainPanel
when you open the application panel. It contains three panes:
The left pane contains commands associated with files, such as Open, Save, Print, and Close. To add a command to this pane, call CMFCRibbonMainPanel::Add.
The right pane contains options that modify the command that you click in the left pane. For example, if you click Save As from the left pane, the right pane can display available file types. To add an item to this pane, call CMFCRibbonMainPanel::AddToRight.
The bottom pane contains buttons that allow you to change the application's settings and to exit the program. To add an item to this pane, call CMFCRibbonMainPanel::AddToBottom.
Header: afxRibbonMainPanel.h
Adds a ribbon element to the left pane of the application button panel.
virtual void Add(CMFCRibbonBaseElement* pElem);
pElem
[in, out] A pointer to the ribbon element to add to the main panel.
Adds a ribbon element to the panel. Elements added using this method will be located in the left column of the main panel.
Adds a text string to the recent files list menu.
void AddRecentFilesList(
LPCTSTR lpszLabel,
int nWidth = 300);
lpszLabel
Specifies the string to add to the recent files list.
nWidth
Specifies the width, in pixels, of the recent files list panel.
Adds a ribbon element to the bottom pane of the ribbon application panel.
void AddToBottom(CMFCRibbonMainPanelButton* pElem);
pElem
[in, out] A pointer to the ribbon element to add to the bottom of the main panel.
Adds a ribbon element to the right pane of the application button panel.
void AddToRight(
CMFCRibbonBaseElement* pElem,
int nWidth = 300);
pElem
A pointer to a ribbon element to be added to the right side of the main panel.
nWidth
Specifies the width, in pixels, of the right panel.
Use this function to add a ribbon element to the right panel. The right panel typically displays the recent files list, but you can add any other ribbon element here.
Returns a rectangle that represents the area of the ribbon main panel.
CRect GetCommandsFrame() const;
A rectangle that represents the area of the ribbon main panel.