工控编程吧
标题:
上位机MFC鼠标操作信息获取源代码
[打印本页]
作者:
qq263946146
时间:
2019-10-2 10:56
标题:
上位机MFC鼠标操作信息获取源代码
(, 下载次数: 1)
上传
点击文件名下载附件
例程界面如上,
移动鼠标,会显示鼠标相关信息。
两个眼睛也会随之移动。
关键代码如下:
void CMyDlg::OnMouseMove(UINT nFlags, CPoint point)
{
// TODO: Add your message handler code here and/or call default
CString str;
str.Format("我看见您的鼠标现在(%d,%d)上面,哈哈哈.....我会用心注目你的每一个精彩瞬间!",point.x,point.y);//我会永远关注你,永远爱你,虾儿
SetWindowText(str);
m_ptMouse=point;//把鼠标所在的位置送给m_ptMouse,以便眼睛能看见它
CRect rcDlg;
GetClientRect(&rcDlg);
CPoint p=rcDlg.CenterPoint();
CRect rect=CRect(p.x-120,p.y-60,p.x+120,p.y+60);
if(m_lookme)
InvalidateRect(rect,TRUE);
//Invalidate();//强制进行窗口重画
CDialog::OnMouseMove(nFlags, point);
}
void CMyDlg::OnRButtonDown(UINT nFlags, CPoint point)
{
// TODO: Add your message handler code here and/or call default
CString str;
m_count++;
str.Format("这是您第%d次点击鼠标右键",m_count);
MessageBox(str);
CDialog::OnRButtonDown(nFlags, point);
}
void CMyDlg::OnLButtonDblClk(UINT nFlags, CPoint point)
{
// TODO: Add your message handler code here and/or call default
AfxMessageBox("你双击了鼠标左键!");
CDialog::OnLButtonDblClk(nFlags, point);
}
void CMyDlg::OnButton1()
{
m_lookme=FALSE;
}
void CMyDlg::OnButton2()
{
m_lookme=TRUE;
}
复制代码
工程源代码下载地址:
(, 下载次数: 0)
上传
点击文件名下载附件
[MFC408]1[/MFC408]
[halcon]1[/halcon]
[weixinlianxi]1[/weixinlianxi]
欢迎光临 工控编程吧 (https://www.gkbc8.com/)
Powered by Discuz! X3.4