共用方式為


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();
}

需求

Header: afxcmn.h

請參閱

參考

一個類別

階層架構圖

CImageList::Detach

CImageList::GetSafeHandle