新人学习mfc 遇到一个问题 就是我想利用onmousemove实现鼠标移动到某处会有图片出现 移到别处就消失 20
用了自己想的方法但是当去除图片时有问题用invalidate会把按钮也重绘了用redrawwindow也不行因为到时候还有画笔会被擦掉网上看了ShowWindow(SW_...
用了自己想的方法 但是当去除图片时有问题 用invalidate会把按钮也重绘了 用redrawwindow 也不行 因为到时候还有画笔 会被擦掉 网上看了ShowWindow(SW_SHOW) 看不懂 求教
void CMy001Dlg::OnMouseMove(UINT nFlags, CPoint point)
{
// TODO: Add your message handler code here and/or call default
if (point.x >= 130 && point.x <= 210 && point.y >= 60 && point.y <=150)
{
CBitmap bitmap;
CClientDC pDC(this);
CDC dcMemory;
dcMemory.CreateCompatibleDC(&pDC);
CRect rect;
GetClientRect(rect);
bitmap.LoadBitmap(IDB_BITMAP1);
dcMemory.SelectObject(&bitmap);
pDC.StretchBlt(130,210,100,100,&dcMemory,0,0,100,100,SRCCOPY);
bitmap.DeleteObject();
dcMemory.DeleteDC();
}
else {}
CDialog::。OnMouseMove(nFlags, point);
}
那个else里面就是想写去除图片 展开
void CMy001Dlg::OnMouseMove(UINT nFlags, CPoint point)
{
// TODO: Add your message handler code here and/or call default
if (point.x >= 130 && point.x <= 210 && point.y >= 60 && point.y <=150)
{
CBitmap bitmap;
CClientDC pDC(this);
CDC dcMemory;
dcMemory.CreateCompatibleDC(&pDC);
CRect rect;
GetClientRect(rect);
bitmap.LoadBitmap(IDB_BITMAP1);
dcMemory.SelectObject(&bitmap);
pDC.StretchBlt(130,210,100,100,&dcMemory,0,0,100,100,SRCCOPY);
bitmap.DeleteObject();
dcMemory.DeleteDC();
}
else {}
CDialog::。OnMouseMove(nFlags, point);
}
那个else里面就是想写去除图片 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询