CImageList::Attach
CImageList のオブジェクトには、イメージ リストをアタッチするには、この関数を呼び出します。
BOOL Attach(
HIMAGELIST hImageList
);
パラメーター
- hImageList
イメージ リスト オブジェクトへのハンドル。
戻り値
添付ファイルが成功した場合は、; それ以外の場合は 0。
使用例
void AddQuestion(HIMAGELIST hmyImageList)
{
CImageList imgList;
// Attach the image list handle to the CImageList object.
imgList.Attach(hmyImageList);
// Add a new icon to the image list.
imgList.Add(AfxGetApp()->LoadStandardIcon(IDI_QUESTION));
// Detach the handle from the CImageList object.
imgList.Detach();
}
必要条件
ヘッダー: afxcmn.h