MFC Toolbar圖示尺寸調整出錯解決方法
解決方法轉自
https://social.msdn.microsoft.com/Forums/vstudio/en-US/8e8b8995-706f-43cc-9463-700d9fa6a010/how-can-i-adjust-icon-size-of-toolbar?forum=vcgeneral
當調整Toolbar中的圖示大小的時候,會導致MFC開啟後afxToolbar型別的名稱的cpp出錯。
原因是,預設在程式目錄中有一個UserImages.bmp檔案,其中的圖示尺寸是16*15。
預設的MFC程式會自動載入這個圖片,導致程式出錯。解決方法如下:
problem solved.
reason is the CMainFrame.cpp OnCreate event,
the following code cause problem, quote them , problem solved.
/*
if (CMFCToolBar::GetUserImages() == NULL)
{
// 載入使用者定義的工具欄影象
if (m_UserImages.Load(_T(".\\UserImages.bmp")))
{
CMFCToolBar::SetUserImages(&m_UserImages);
}
}*/
there is a UserImages.bmp in project folder, size 15*16, and we change size, so the two size different, so cause this.
exactly assertion error is from here , the bold italic underline words.
BOOL __stdcall CMFCToolBar::SetUserImages(CMFCToolBarImages* pUserImages)
{
ENSURE(pUserImages != NULL);
if (!pUserImages->IsValid())
{
ASSERT(FALSE);
return FALSE;
}
if (m_sizeImage
!= pUserImages->GetImageSize())
{
ASSERT(FALSE);
return FALSE;
}
m_pUserImages = pUserImages;
return TRUE;
}
如果沒有更新,自行手動處理,新增或刪除圖示使之和Toolbar圖片的上的保持一致。
IDR_MAINFRAME TOOLBAR 17, 15
BEGIN
BUTTON ID_FILE_NEW
BUTTON ID_FILE_OPEN
BUTTON ID_FILE_SAVE
BUTTON ID_FILE_PRINT
BUTTON ID_BUTTON_RESET_VIEW
BUTTON ID_BUTTON_ZOOM_ALL
BUTTON ID_APP_ABOUT
END