1>hello.obj : error LNK2001: 无法解析的外部符号 "protected: void __thiscall CMainWindow::OnLButtonDown(unsigned int,class CPoint)" (?OnLButtonDown@CMainWindow@@IAEXIVCPoint@@@Z)
1>d:\Visual Studio 2008\Projects\helloworld\Debug\helloworld.exe : fatal error LNK1120: 1 个无法解析的外部命令
原来是自己忘记这是一个成员函数,而没有加 “类名::” 了,以后一定要记住啊!