⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 membitmap.h

📁 利用VC++开发
💻 H
字号:
// MemBitmap.h: interface for the CMemBitmap class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_MEMBITMAP_H__3B96ADAC_FC6D_4D34_A7D0_639BFFE2D168__INCLUDED_)
#define AFX_MEMBITMAP_H__3B96ADAC_FC6D_4D34_A7D0_639BFFE2D168__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CMemBitmap : public CBitmap  
{

private:  
	CWnd* pWnd;
public:
	CMemBitmap();
	virtual ~CMemBitmap();
public:

	void init(CWnd* pwnd);
    void Clear(int x1, int y1, int x2, int y2, COLORREF color);
	void TextOut(int x, int y, int iSize, LPCSTR strText,COLORREF color);
	
};

#endif // !defined(AFX_MEMBITMAP_H__3B96ADAC_FC6D_4D34_A7D0_639BFFE2D168__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -