CImageList::EndDrag

更新 : 2007 年 11 月

ドラッグ操作を終了します。

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

その他の技術情報

CImageList のメンバ