码迷,mamicode.com
首页 > Windows程序
17windows_17_listbox列表框
17windows_17_listbox列表框#include #include #include "resource.h"CHAR szText[256] = { 0 };#define PrintLog(x) WriteConsole(g_hStdout, x, strlen(x), NULL,... ...
分类:Windows程序   时间:2016-06-10 09:39:56    阅读次数:287
15windows_15_Edit编辑框
15windows_15_Edit编辑框#include #include #include "resource.h"CHAR szText[256] = { 0 };#define PrintLog(x) WriteConsole(g_hStdout, x, strlen(x), NULL, NU... ...
分类:Windows程序   时间:2016-06-10 09:40:33    阅读次数:274
19windows_19_OwnerDraw自制按钮DIYBUTTON
19windows_19_OwnerDraw自制按钮DIYBUTTON#include #include CHAR szText[256] = { 0 };#define PrintLog(x) WriteConsole(g_hStdout, x, strlen(x), NULL, NULL)HIN... ...
分类:Windows程序   时间:2016-06-10 09:37:17    阅读次数:342
12Windows_Modeless_Dialog对话框
12Windows_Modeless_Dialog对话框#include #include #include "resource.h"CHAR szText[256] = { 0 };#define PrintLog(x) WriteConsole(g_hStdout, x, strlen(x), ... ...
分类:Windows程序   时间:2016-06-10 09:37:08    阅读次数:225
11WinDlg 对话框一
#include #include #include "resource.h"CHAR szText[256] = { 0 };#define PrintLog(x) WriteConsole(g_hStdout, x, strlen(x), NULL, NULL)HINSTANCE g_hInst... ...
分类:Windows程序   时间:2016-06-10 09:38:08    阅读次数:309
C#使用反射加载多个程序集
当开发插件的时候需要用到反射,在客户端动态加载遍历程序集,并调用每个程序集的方法。 创建一个控制台应用程序,首先设计一个接口: 在控制台应用程序下创建Plugins文件夹,控制台的可执行文件和所有程序集文件都生成在这里。右键控制台项目--"属性"--"生成",把"输出路径"设置成Plugins文件夹 ...
分类:Windows程序   时间:2016-06-10 09:36:51    阅读次数:205
21.1 windows_21_Library_Class_DLL 动态库补充1
windows_21_Library_Class_DLL 动态库补充1 #include "windows_21_Library_Class_DLL.h"int CMath::Add( int nAdd1, int nAdd2 ){ return nAdd1 + nAdd2;}int CMath::... ...
分类:Windows程序   时间:2016-06-10 09:37:13    阅读次数:192
7Windows_paint GDI绘图
// 7Windows_paint.cpp : 定义应用程序的入口点。//#include "stdafx.h"#include "7Windows_paint.h"#include "resource.h"#include HINSTANCE g_hInst = NULL;HANDLE g_hSt... ...
分类:Windows程序   时间:2016-06-10 08:34:21    阅读次数:332
8Windows_paint2_bimap 位图
#include #include #include "resource1.h"//宏定义输出函数#define PrintLog(x) WriteConsole(g_hStdout, x, strlen(x), NULL, NULL);HINSTANCE g_hInst;HANDLE g_hStd... ...
分类:Windows程序   时间:2016-06-10 08:32:54    阅读次数:254
10windows_font_text
#include #include CHAR szText[256] = { 0 };#define PrintLog(x) WriteConsole(g_hStdout, x, strlen(x), NULL, NULL)HINSTANCE g_hInst = NULL; //窗口句柄HANDLE... ...
分类:Windows程序   时间:2016-06-10 08:32:57    阅读次数:286
1windows_Mouse
// WIN_PAINT_MESSAGE.cpp : 定义应用程序的入口点。//#include "stdafx.h"#include "windows_Mouse.h"#include HINSTANCE g_hInst = NULL;HANDLE g_hStdout = NULL;CHAR sz... ...
分类:Windows程序   时间:2016-06-10 08:31:09    阅读次数:234
2windows_timer
// 2Window_Timer.cpp : 定义应用程序的入口点。//#include "stdafx.h"#include "2Window_Timer.h"#include HINSTANCE g_hInst;HANDLE g_hStdout = NULL;//宏定义输入函数#define P... ...
分类:Windows程序   时间:2016-06-10 08:32:04    阅读次数:306
9WinMap 映射
#include #include CHAR szText[256] = { 0 };#define PrintLog(x) WriteConsole(g_hStdout, x, strlen(x), NULL, NULL)HINSTANCE g_hInst = NULL; //窗口句柄HANDLE... ...
分类:Windows程序   时间:2016-06-10 08:31:20    阅读次数:240
6WinRes资源使用
// 6WinRes.cpp : 定义应用程序的入口点。//#include "stdafx.h"#include "6WinRes.h"#include "Resource.h"#include #define PrintLog(x) WriteConsole(g_hStdout, x, strl... ...
分类:Windows程序   时间:2016-06-10 08:27:13    阅读次数:284
3Windows_menu
// 3Windows_menu.cpp : 定义应用程序的入口点。//#include "stdafx.h"#include "3Windows_menu.h"#include HINSTANCE g_hInst;HANDLE g_hStdout = NULL;BOOL g_bCheckCut =... ...
分类:Windows程序   时间:2016-06-10 08:28:18    阅读次数:313
4Windows_System_menu
// 4Windows_System_menu.cpp : 定义应用程序的入口点。//#include "stdafx.h"#include "4Windows_System_menu.h"#include #define PrintLog(x) WriteConsole(g_hStdout, x,... ...
分类:Windows程序   时间:2016-06-10 08:27:54    阅读次数:241
Win32简单模板
Win32简单模板// 2Window_Timer.cpp : 定义应用程序的入口点。//#include #include #include "resource1.h"//宏定义输出函数#define PrintLog(x) WriteConsole(g_hStdout, x, strlen(x)... ...
分类:Windows程序   时间:2016-06-10 08:25:42    阅读次数:220
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!