VC++关于MFC中消息映射的例子用ON_WM_LBUTTONDOWN时出错,代码如下
//头文件hello.h#include<afxwin.h>classCMyApp:publicCWinApp{public:virtualBOOLInitInstanc...
//头文件hello.h
#include<afxwin.h>
class CMyApp :public CWinApp
{
public:
virtual BOOL InitInstance();
};
class CMainWindow :public CFrameWnd
{
public:
CMainWindow();
protected:
afx_msg void OnPaint();
afx_msg void OnLButtonDown();
DECLARE_MESSAGE_MAP();
};
//源文件hello.cpp
#include"hello.h"
CMyApp myApp;
BOOL CMyApp::InitInstance()
{
this->m_pMainWnd = new CMainWindow();
this->m_pMainWnd->ShowWindow(this->m_nCmdShow);
this->m_pMainWnd->UpdateWindow();
return true;
}
BEGIN_MESSAGE_MAP(CMainWindow,CFrameWnd)
ON_WM_PAINT()
ON_WM_LBUTTONDOWN()
END_MESSAGE_MAP()
CMainWindow::CMainWindow()
{
this->Create(NULL,TEXT("The Hello Application"),WS_OVERLAPPED|WS_VSCROLL,CRect(100,100,380,300));
}
void CMainWindow::OnPaint()//处理绘制消息,Paint消息
{
CPaintDC dc(this);//
dc.Ellipse(100, 100, 200, 300);
CRect rect;
this->GetClientRect(&rect);
dc.DrawText(TEXT("Hello World"),-1,&rect,DT_SINGLELINE|DT_CENTER|DT_VCENTER);
}
void CMainWindow::OnLButtonDown(UINT nFlags, CPoint point)
{
this->MessageBox(TEXT("Hello,MFC"));
}
求教大神,怎么调试错误? 展开
#include<afxwin.h>
class CMyApp :public CWinApp
{
public:
virtual BOOL InitInstance();
};
class CMainWindow :public CFrameWnd
{
public:
CMainWindow();
protected:
afx_msg void OnPaint();
afx_msg void OnLButtonDown();
DECLARE_MESSAGE_MAP();
};
//源文件hello.cpp
#include"hello.h"
CMyApp myApp;
BOOL CMyApp::InitInstance()
{
this->m_pMainWnd = new CMainWindow();
this->m_pMainWnd->ShowWindow(this->m_nCmdShow);
this->m_pMainWnd->UpdateWindow();
return true;
}
BEGIN_MESSAGE_MAP(CMainWindow,CFrameWnd)
ON_WM_PAINT()
ON_WM_LBUTTONDOWN()
END_MESSAGE_MAP()
CMainWindow::CMainWindow()
{
this->Create(NULL,TEXT("The Hello Application"),WS_OVERLAPPED|WS_VSCROLL,CRect(100,100,380,300));
}
void CMainWindow::OnPaint()//处理绘制消息,Paint消息
{
CPaintDC dc(this);//
dc.Ellipse(100, 100, 200, 300);
CRect rect;
this->GetClientRect(&rect);
dc.DrawText(TEXT("Hello World"),-1,&rect,DT_SINGLELINE|DT_CENTER|DT_VCENTER);
}
void CMainWindow::OnLButtonDown(UINT nFlags, CPoint point)
{
this->MessageBox(TEXT("Hello,MFC"));
}
求教大神,怎么调试错误? 展开
2个回答
展开全部
hello.h中的
afx_msg void OnLButtonDown();
需要改为
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
这样函数的声明和实现都一致方可通过编译。
另外,cpp文件中的
this->
都可以省略掉,1可以节省敲代码的时间,2是可以缩小代码行的长度,方便查看代码。
查看ON_WM_LBUTTONDOWN的宏定义也可知道函数的正确声明方式:
#define ON_WM_LBUTTONDOWN() \
{ WM_LBUTTONDOWN, 0, 0, 0, AfxSig_vwp, \
(AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, CPoint))&OnLButtonDown },
追问
大神一眼看出我的错误,我对你的敬仰犹如滔滔江水连绵不绝,又如黄河泛滥,一发而不可收拾。
展开全部
这段儿有问题:
protected:
afx_msg void OnPaint();
afx_msg void OnLButtonDown(); //声明和实现的参数不匹配哦
DECLARE_MESSAGE_MAP();
改为:
protected:
afx_msg void OnPaint();
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
DECLARE_MESSAGE_MAP();
protected:
afx_msg void OnPaint();
afx_msg void OnLButtonDown(); //声明和实现的参数不匹配哦
DECLARE_MESSAGE_MAP();
改为:
protected:
afx_msg void OnPaint();
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
DECLARE_MESSAGE_MAP();
追问
大神你也回答的非常好,但是我只能采纳一个人
追答
没什么的,那哥们回答的更细致更尽力,你应该采纳他的。只是那个this->,和我的观点不一致。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询