CMFCRibbonButton::CMFCRibbonButton

构造功能区按钮对象。

CMFCRibbonButton(
   UINT nID,
   LPCTSTR lpszText,
   int nSmallImageIndex=-1,
   int nLargeImageIndex=-1,
   BOOL bAlwaysShowDescription=FALSE 
);
CMFCRibbonButton(
   UINT nID,
   LPCTSTR lpszText,
   HICON hIcon,
   BOOL bAlwaysShowDescription=FALSE,
   HICON hIconSmall=NULL,
   BOOL bAutoDestroyIcon=FALSE,
   BOOL bAlphaBlendIcon=FALSE 
);

参数

  • [in] nID
    指定按钮的命令ID。

  • [in] lpszText
    指定按钮的文本标签。

  • [in] nSmallImageIndex
    在图像指定按钮的小图像的从零开始的索引列表父类别。

  • [in] nLargeImageIndex
    在图像指定按钮的大图像的从零开始的索引列表父类别。

  • [in] hIcon
    指定处理对应用程序使用为按钮的图像的图标。

示例

下面的示例演示如何构造 CMFCRibbonButton 对象。

    strTemp.LoadString(IDS_RIBBON_CUT);
    CMFCRibbonButton* butn = new CMFCRibbonButton(ID_EDIT_CUT, strTemp, 1);
    butn ->SetKeys(_T("k"));

要求

标头: afxribbonbutton.h

请参见

参考

CMFCRibbonButton选件类

层次结构图