随笔分类 -  VC++SDK编程

摘要:截图看不出效果^-^ 阅读全文
posted @ 2015-08-09 10:43 叶建成 阅读(640) 评论(0) 推荐(0)
摘要:1 #include <Windows.h> 2 #include <tchar.h> 3 #include <math.h> 4 #define PI 3.1415926 5 BOOLEAN InitWindowClass(HINSTANCE hInstance, int nCmdShow); 6 阅读全文
posted @ 2015-08-08 20:04 叶建成 阅读(861) 评论(0) 推荐(0)
摘要:↑ 界面太丑了,后来代码又被我改了: ↓ 阅读全文
posted @ 2015-08-07 21:55 叶建成 阅读(1060) 评论(1) 推荐(0)
摘要:1 #include 2 #include 3 #include 4 BOOLEAN InitWindowClass(HINSTANCE hInstance, int nCmdShow); 5 LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); 6 int WINAPI WinMain(HINSTANCE hI... 阅读全文
posted @ 2015-08-07 16:37 叶建成 阅读(1186) 评论(0) 推荐(0)
摘要:1 #include 2 #include 3 BOOLEAN InitWindowClass(HINSTANCE hInstance, int nCmdShow); 4 LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); 5 int WINAPI WinMain(HINSTANCE hInstance, HINST... 阅读全文
posted @ 2015-08-06 21:47 叶建成 阅读(771) 评论(0) 推荐(0)
摘要:1 //Windows.h文件中包含应用程序中所需的数据类型和数据结构的定义 2 #include 3 #include 4 5 LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); //窗口函数说明 6 //------------------------------以下是入口函数的代码-------... 阅读全文
posted @ 2015-08-05 19:10 叶建成 阅读(694) 评论(0) 推荐(0)