次の方法で共有


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

参照

関連項目

CImageList クラス

階層図

CImageList::Detach

CImageList::GetSafeHandle