mfc判断鼠标位置是否在控件上

鼠标在控件上位置该怎么判断

鼠标在控件上位置该怎么判断

那你把静态文本框都设为Notify,派生一个CStatic类,响应WM_MOUSEMOVE事件,里面的那个point就是你想要的值

BOOL CtestDlg::PreTranslateMessage(MSG* pMsg)  
{  
// TODO: Add your specialized code here and/or call the base class  

if(pMsg->message == WM_MOUSEMOVE&& pMsg->hwnd != m_hWnd)  
{  
CPoint pt;  
pt = pMsg->pt;
FromHandle(pMsg->hwnd)->ScreenToClient(&pt); //这个pt就是了
} 



BOOL CtestDlg::PreTranslateMessage(MSG* pMsg)  
{  
// TODO: Add your specialized code here and/or call the base class  

if(pMsg->message == WM_MOUSEMOVE&& pMsg->hwnd != m_hWnd)  
{  
CRect rt; 
GetDlgItem(IDC_EDIT1)->GetClientRect(&rt); //可以不要
GetDlgItem(IDC_EDIT1)->ScreenToClient(&pMsg->pt);  
}  


return CDialogEx::PreTranslateMessage(pMsg);  
}


MFC中,可以通过以下步骤实现Listbox控件文本的鼠标自由拖拽式选中与复制: 1. 在Listbox控件的消息映射中响应WM_LBUTTONDOWN消息,记录下鼠标按下的位置和当前选中的文本项。 2. 在WM_MOUSEMOVE消息中,判断是否处于鼠标拖拽状态,如果是,则根据当前鼠标位置计算出选中的文本项,并更新Listbox控件的选中状态。 3. 在WM_LBUTTONUP消息中,结束鼠标拖拽状态,将选中的文本项复制到剪贴板中。 以下是示例代码: ``` void CMyDlg::OnLButtonDown(UINT nFlags, CPoint point) { // 记录鼠标按下的位置和选中的文本项 m_bDragging = true; m_nStartSel = m_listBox.GetCurSel(); m_ptDragStart = point; } void CMyDlg::OnMouseMove(UINT nFlags, CPoint point) { // 判断是否处于鼠标拖拽状态 if (m_bDragging) { // 根据当前鼠标位置计算选中的文本项 int nSel = m_listBox.ItemFromPoint(point); if (nSel != LB_ERR && nSel != m_nStartSel) { // 更新Listbox控件的选中状态 m_listBox.SetSel(m_nStartSel, FALSE); m_listBox.SetSel(nSel, TRUE); m_nLastSel = nSel; } } } void CMyDlg::OnLButtonUp(UINT nFlags, CPoint point) { // 结束鼠标拖拽状态 m_bDragging = false; // 复制选中的文本项到剪贴板中 CString strText; int nCount = m_listBox.GetSelCount(); if (nCount > 0) { int* pSelItems = new int[nCount]; m_listBox.GetSelItems(nCount, pSelItems); for (int i = 0; i < nCount; i++) { CString strItemText; m_listBox.GetText(pSelItems[i], strItemText); strText += strItemText + _T("\r\n"); } delete[] pSelItems; } if (!strText.IsEmpty()) { if (OpenClipboard()) { EmptyClipboard(); HGLOBAL hClipData = GlobalAlloc(GMEM_MOVEABLE, (strText.GetLength() + 1) * sizeof(TCHAR)); if (hClipData != NULL) { TCHAR* pClipText = (TCHAR*)GlobalLock(hClipData); _tcscpy_s(pClipText, strText.GetLength() + 1, strText); GlobalUnlock(hClipData); SetClipboardData(CF_UNICODETEXT, hClipData); } CloseClipboard(); } } } ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值