vc怎么实现列表控件各项的图标拖动
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vc怎么实现列表控件各项的图标拖动相关的知识,希望对你有一定的参考价值。
参考技术A 拖动图标通过实现OnBeginDrag等消息函数完成:void CMyListCtrl::OnBeginDrag(LPNMHDR pnmhdr, LRESULT *pResult)
CPoint ptItem, ptAction, ptImage;
NM_LISTVIEW *pnmListView = (NM_LISTVIEW *)pnmhdr;
ASSERT(!m_bDragging);
m_bDragging = TRUE;
m_iItemDrag = pnmListView->iItem;
ptAction = pnmListView->ptAction;
GetItemPosition(m_iItemDrag, &ptItem); // ptItem is relative to (0,0) and not the view origin
GetOrigin(&m_ptOrigin);
ASSERT(m_pimageListDrag == NULL);
m_pimageListDrag = CreateDragImage(m_iItemDrag, &ptImage);
m_sizeDelta = ptAction - ptImage; // difference between cursor pos and image pos
m_ptHotSpot = ptAction - ptItem + m_ptOrigin; // calculate hotspot for the cursor
m_pimageListDrag->DragShowNolock(TRUE); // lock updates and show drag image
m_pimageListDrag->SetDragCursorImage(0, m_ptHotSpot); // define the hot spot for the new cursor image
m_pimageListDrag->BeginDrag(0, CPoint(0, 0));
ptAction -= m_sizeDelta;
m_pimageListDrag->DragEnter(this, ptAction);
m_pimageListDrag->DragMove(ptAction); // move image to overlap original icon
SetCapture();
void CMyListCtrl::OnMouseMove(UINT nFlags, CPoint point)
long lStyle;
int iItem;
LV_ITEM lvitem;
lStyle = GetWindowLong(m_hWnd, GWL_STYLE);
lStyle &= LVS_TYPEMASK; // drag will do different things in list and report mode
if (m_bDragging)
ASSERT(m_pimageListDrag != NULL);
m_pimageListDrag->DragMove(point - m_sizeDelta); // move the image
if ((iItem = HitTest(point)) != -1)
m_iItemDrop = iItem;
m_pimageListDrag->DragLeave(this); // unlock the window and hide drag image
if (lStyle == LVS_REPORT || lStyle == LVS_LIST)
lvitem.iItem = iItem;
lvitem.iSubItem = 0;
lvitem.mask = LVIF_STATE;
lvitem.stateMask = LVIS_DROPHILITED; // highlight the drop target
SetItem(&lvitem);
point -= m_sizeDelta;
m_pimageListDrag->DragEnter(this, point); // lock updates and show drag image
CListCtrl::OnMouseMove(nFlags, point);
void CMyListCtrl::OnButtonUp(CPoint point)
if (m_bDragging) // end of the drag operation
long lStyle;
CString cstr;
lStyle = GetWindowLong(m_hWnd, GWL_STYLE) & LVS_TYPEMASK;
m_bDragging = FALSE;
ASSERT(m_pimageListDrag != NULL);
m_pimageListDrag->DragLeave(this);
m_pimageListDrag->EndDrag();
delete m_pimageListDrag;
m_pimageListDrag = NULL;
// The drop target's sub-item text is replaced by the dragged item's
// main text
if (lStyle == LVS_REPORT && m_iItemDrop != m_iItemDrag)
cstr = GetItemText(m_iItemDrag, 0);
SetItemText(m_iItemDrop, 1, cstr);
//the character string "**" is added to the end of the drop target's main text
if (lStyle == LVS_LIST && m_iItemDrop != m_iItemDrag)
cstr = GetItemText(m_iItemDrop, 0);
cstr += _T("**");
SetItemText(m_iItemDrop, 0, cstr);
// move the icon
if (lStyle == LVS_ICON || lStyle == LVS_SMALLICON)
point -= m_ptHotSpot; // the icon should be drawn exactly where the image is
point += m_ptOrigin;
SetItemPosition(m_iItemDrag, point); // just move the dragged item
::ReleaseCapture();
void CMyListCtrl::OnLButtonUp(UINT nFlags, CPoint point)
OnButtonUp(point);
CListCtrl::OnLButtonUp(nFlags, point);
在图标间划线可以确定图标的位置然后用Pen自画。
右键菜单相应OnRclick函数
void CMyListView::OnRclick(NMHDR* pNMHDR, LRESULT* pResult)
// TODO: Add your control notification handler code here
CListCtrl &theCtrl = GetListCtrl();
CPoint pt;
::GetCursorPos(&pt);
theCtrl.ScreenToClient(&pt);
LVHITTESTINFO lvinfo;
lvinfo.pt = pt;
lvinfo.flags = LVHT_ABOVE;
m_nItem = theCtrl.SubItemHitTest(&lvinfo);
if(m_nItem != -1)
CMenu menu ,* pSubMenu;
menu.LoadMenu(IDR_MENU1);
pSubMenu = menu.GetSubMenu(0);
theCtrl.ClientToScreen(&pt);
if(pSubMenu)
pSubMenu->TrackPopupMenu (TPM_LEFTALIGN, pt.x, pt.y, this);
*pResult = 0;
以上是关于vc怎么实现列表控件各项的图标拖动的主要内容,如果未能解决你的问题,请参考以下文章
winform 控件过多,结果滚动条拖动速度变慢,请问怎么解决?
大家好,MFC list控件中怎么让滚动条为灰色不能拖动,但是仍然可以用鼠标中键滚动列表内容。