摘要:
注:主要变化是在下面这张位图上的操作 //全局变量HBITMAP bg, girl;HDC mdc;//起始坐标const int xstart = 50;const int ystart = 20; // InitInstance() 函数 //加载资源// BOOL InitInstance(H 阅读全文
摘要:
以后所有图片都放在根目录下: 如有另放,会特别注明 //全局变量HBITMAP bg,girl;HDC mdc; //起始坐标const int xstart = 50;const int ystart = 20; // InitInstance() 函数 //加载资源// BOOL InitIns 阅读全文
摘要:
// MyPaint() 函数 //绘制图形// void MyPaint(HDC hdc){ CImage m_Image; // 获取CImage支持的图像文件的过滤字符串 /*hResult = m_Image.GetExporterFilterString(strFilter, aguidF 阅读全文
摘要:
//全局变量 HDC mdc; // InitInstance() 函数 //加载资源// BOOL InitInstance(HINSTANCE hInstance, int nShowCmd){ HWND hwnd; HDC hdc; //创建窗口第三步:正式创建窗口 //创建窗口函数 hwnd 阅读全文
摘要:
//全局变量HPEN hPen;HBRUSH hBru[4];int sBru[4] = { HS_VERTICAL, HS_HORIZONTAL, HS_CROSS, HS_DIAGCROSS }; // MyPaint() 函数 //绘制图形// void MyPaint(HDC hdc){ h 阅读全文
摘要:
//全局变量HPEN hPen;HBRUSH hBru;POINT poly1[6], poly2[5], poly3[5]; // InitInstance() 函数 //加载资源// BOOL InitInstance(HINSTANCE hInstance, int nShowCmd){ HW 阅读全文
摘要:
// MyPaint() 函数 //绘制图形// void MyPaint(HDC hdc, LPARAM lParam){ int x, y; char str[20] = ""; x = LOWORD(lParam);//取得鼠标x坐标值 y = HIWORD(lParam);//取得鼠标y坐标 阅读全文
摘要:
#include //全局函数声明 LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam); ATOM MyRegisterClass(HINSTANCE hInstance); BOOL InitInstance(HINSTANCE hInstance, int nShowCmd); ... 阅读全文
摘要:
头文件:MainClass.h 内容: #include <Windows.h> //全局函数声明LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);ATOM MyRegisterClass( 阅读全文