MFC C++初学,对话框工程,怎么在pic CONTROL里边设置ONMOUSE左键DOWN,ONMOUSEMOVE事件?谢谢
展开全部
如果原有控件不带有你所描述的功能,那么就要重写控件。
添加ONMOUSEMOVE事件
CPoint pos;
GetCursorPos(&pos); //获取当前鼠标位置
CRect rc;
GetDlgItem(IDC_LOCATION)->GetWindowRect(&rc); //获取ID为IDC_LOCATION的Static Text的范围
if (rc.PtInRect(pos)) //如果鼠标在这个范围之内
{
if(!GetDlgItem(IDC_PATH_INFO)->IsWindowVisible())
{
//GetDlgItem(IDC_PATH_INFO)->SetWindowTextW(m_cstrDirectory);
//int x = (int)point.x;
////int y = (int)point.y;
//int iCount = m_cstrDirectory.GetLength();
//int iIndex = iCount/10;
//GetDlgItem(IDC_PATH_INFO)->MoveWindow(x,35,220,5*iIndex+15,false);
//GetDlgItem(IDC_PATH_INFO)->ShowWindow(TRUE);
//m_tooltip.AddTool(GetDlgItem(IDC_LOCATION), m_cstrDirectory);
//m_pContentTip.AddTool(GetDlgItem(IDC_LOCATION),m_cstrDirectory);
}
}
else
{
GetDlgItem(IDC_PATH_INFO)->ShowWindow(FALSE);
}
上面的代码是一个例子
追问
怎么都注释掉了
追答
我自己不要的功能就注释掉呗, 被你看看而已。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询