次の方法で共有


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