共用方式為


CToolBarCtrl::ChangeBitmap

變更一個按鈕的點陣圖目前工具列控制項。

BOOL ChangeBitmap(
     int idButton, 
     int iBitmap
);

參數

參數

描述

[in] idButton

要接收新的點陣圖按鈕的命令識別項。

[in] iBitmap

影像的以零起始的索引目前工具列控制項的影像清單的。

傳回值

true ,如果此方法成功,否則, false。

備註

如果此方法成功,則系統會顯示指定之按鈕的指定影像。

這個方法會將 TB_CHANGEBITMAP 資訊,在 Windows SDK說明。

需求

標題: afxcmn.h

範例

下列程式碼範例會變更 [儲存檔案。] 按鈕的點陣圖儲存至 [如需] 按鈕的點陣圖。

    {
        // Change the bitmap for the File Save button, whose 
        // command ID is ID_FILE_SAVE, to the bitmap for the 
        // About button, whose index is 7. 
        CToolBarCtrl& m_toolBarCtrl = m_wndToolBar.GetToolBarCtrl();
        BOOL bRet = m_toolBarCtrl.ChangeBitmap( ID_FILE_SAVE, 7 );
    }

請參閱

參考

CToolBarCtrl 類別

階層架構圖

TB_CHANGEBITMAP

CToolBarCtrl::ReplaceBitmap