MFC
Gummary
这个作者很懒,什么都没留下…
展开
-
error C2248: “CObject::CObject”: 无法访问private 成员(在“CObject”类中声明)
CObject类不能直接返回,只能返回引用! CObject类不能直接返回,只能返回引用! CObject类不能直接返回,只能返回引用! CObject类不能直接返回,只能返回引用! CObject类不能直接返回,只能返回引用! CObject类不能直接返回,只能返回引用!原创 2015-07-15 10:07:24 · 800 阅读 · 0 评论 -
MFC_显示图片
方法一步骤1、将想要加载的图片利用windows自带的绘图工具转换成bmp格式 2、在vs中添加这个bmp资源,获得这个资源的ID(假设为IDB_BITMAP1) 3、在ondraw函数中添加如下代码 CBitmap bitmap; bitmap.LoadBitmapA( IDB_BITMAP1 ); BITMAP bmp; bitmap.GetBit原创 2015-08-24 23:05:30 · 835 阅读 · 0 评论 -
MFC_双缓冲技术
双缓冲技术原创 2015-08-31 13:20:10 · 4418 阅读 · 4 评论 -
MFC_改变鼠标形状
核心代码HCURSOR hCur = LoadCursor(NULL, IDC_HAND); ::SetCursor(hCur);LoadCursor函数功能该函数从一个与应用有关的可执行文件中加载一个光标资源原型HCURSOR WINAPI LoadCursor( _In_opt_ HINSTANCE hInstance, _In_ LPCTSTR lpCurs原创 2015-08-31 13:49:15 · 3233 阅读 · 0 评论 -
Leetcode_258_Add Digits
Given a non-negative integer num, repeatedly add all its digits until the result has only one digit.For example:Given num = 38, the process is like: 3 + 8 = 11, 1 + 1 = 2. Since 2 has only one digit, r原创 2016-04-17 11:15:17 · 479 阅读 · 0 评论