摘要: {VCpp********************************************************************************asm基本类型:bool char int float double符号修饰:signed unsigned长度修饰:short long集合类型:struct enum union内存管理:delete new true fal... 阅读全文
posted @ 2008-11-03 18:07 最简单的 阅读(308) 评论(0) 推荐(0)
摘要: /**************************此用来打开一个新窗口窗口ID:IDD_RENAME_DIALOG*/CRename *dlg = new CRename(this); //打开一个新窗口IDD_RENAME_DIALOGdlg->Create(IDD_RENAME_DIALOG); //CRename为其cpp文件名dlg->ShowWindow(SW_SHOW);Dest... 阅读全文
posted @ 2008-11-03 14:03 最简单的 阅读(170) 评论(0) 推荐(0)
摘要: ExtTextOut(~~~);输出文字 SetBkMode(TRANSPARENT);设置文字为透明 SetTextColor(RGB());设置文字颜色 CreateFont(~~~);设置文字字体 函数功能:该函数创建一种有特殊性的逻辑字体,此逻辑字体可以在后面被任何设备选择。 函数原型:HFONT CreateFont( int nHeight, int nWidth, int ... 阅读全文
posted @ 2008-11-03 13:58 最简单的 阅读(983) 评论(0) 推荐(0)
摘要: StretchBlt 函数功能:函数从源矩形中复制一个位图到目标矩形,必要时按目前目标设备设置的模式进行图像的拉伸或压缩。 函数原型:BOOL StretchBlt(HDC hdcDest, int nXOriginDest, int nYOriginDest, int nWidthDest, int nHeighDest, HDC hdcSrc, int nXOriginSrc,... 阅读全文
posted @ 2008-11-03 13:57 最简单的 阅读(369) 评论(0) 推荐(0)