WIN32中如何使用MFC的函数?
我照网上说的,加了这么点东西到stdafx.h但出现上面的错误,怎么回事?#pragmacomment(lib,"kernel32.lib")#pragmacomment...
我照网上说的,加了这么点东西到stdafx.h 但出现上面的错误,怎么回事?
#pragma comment(lib,"kernel32.lib ")#pragma comment(lib,"user32.lib ")#pragma comment(lib,"gdi32.lib")#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers#include <afxwin.h> // MFC core and standard components#include <afxext.h> // MFC extensions#include <afxdisp.h> // MFC Automation classes#include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls#ifndef _AFX_NO_AFXCMN_SUPPORT#include <afxcmn.h> // MFC support for Windows Common Controls#endif // _AFX_NO_AFXCMN_SUPPORT 展开
#pragma comment(lib,"kernel32.lib ")#pragma comment(lib,"user32.lib ")#pragma comment(lib,"gdi32.lib")#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers#include <afxwin.h> // MFC core and standard components#include <afxext.h> // MFC extensions#include <afxdisp.h> // MFC Automation classes#include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls#ifndef _AFX_NO_AFXCMN_SUPPORT#include <afxcmn.h> // MFC support for Windows Common Controls#endif // _AFX_NO_AFXCMN_SUPPORT 展开
若以下回答无法解决问题,邀请你更新回答
1个回答
展开全部
哪个烂网这么说的?还是你没抄全?GetDC前面没有作用域名,或者实体名,这是不可能的。
追答
http://msdn.microsoft.com/zh-cn/dd144871
这是MSDN(微软)的官方函数说明,提到GetDC需要一个参数,这个参数应该是句柄。
点击example查看官方给出例子:
hdc = GetDC(hwnd); //hwnd是当前窗体的句柄
MoveToEx(hdc, ptPrevious.x, ptPrevious.y, NULL); //移动
LineTo(hdc, LOWORD(lParam), HIWORD(lParam)); //画线
ReleaseDC(hwnd, hdc); //释放
这段的意思是用鼠标画一段横线。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询