다음을 통해 공유


CImageList::EndDrag

끌기 작업을 종료 하려면이 함수를 호출 합니다.

static void PASCAL EndDrag( );

설명

끌기 작업을 시작할 수 있는 BeginDrag 멤버 함수입니다.

예제

void CImageListDlg::OnLButtonUp(UINT nFlags, CPoint point)
{
   // Terminate the drag image (usually called from WM_LBUTTONUP).
   m_myImageList.DragLeave(this);
   m_myImageList.EndDrag();

   CDialog::OnLButtonUp(nFlags, point);
}

요구 사항

헤더: afxcmn.h

참고 항목

참조

CImageList 클래스

계층 구조 차트

CImageList::BeginDrag

CImageList::Draw

CImageList::DragMove