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