摘要: http://www.codeproject.com/Articles/42529/Outline-Text 阅读全文
posted @ 2012-12-18 23:40 fff8965 阅读(426) 评论(0) 推荐(0) 编辑
摘要: // gdiTest.cpp : Defines the entry point for the application.//#include "stdafx.h"#include "gdiTest.h"#include <objidl.h>#include <GdiPlus.h>using namespace Gdiplus;#pragma comment (lib,"Gdiplus.lib")#define MAX_LOADSTRING 100VOID OnPaint(HDC hdc){ Graphics 阅读全文
posted @ 2012-12-18 23:12 fff8965 阅读(2998) 评论(0) 推荐(0) 编辑
摘要: 转自:http://blog.sina.com.cn/s/blog_58c3f79601018b8i.html只有内置类型存在字面值,没有类(class)类型字面值.例如:0是int类型的字面值,3.14159是double类型的字面值.整型浮点字面值20 // decimal 十进制024 // octal 八进制0X14 // hexadecimal 十六进制128u ,128U // unsigned1024UL // unsigned long1L // long 长整形8Lu // unsigned long3.14159F = 3.14159E0F // float ,科学计数.0 阅读全文
posted @ 2012-12-18 14:46 fff8965 阅读(506) 评论(0) 推荐(0) 编辑