ddbitmap.h
来自「API经典入门」· C头文件 代码 · 共 24 行
H
24 行
// Filename: DDBitmap.h
#ifndef __DDBITMAP_H__
#define __DDBITMAP_H__
class CDDBitmap : public CBitmap
{
// Constructors & Destructors
public:
CDDBitmap();
~CDDBitmap();
// Operations
public:
BOOL DrawOnDC (CDC* pDC, int x, int y);
BOOL StretchOnDC (CDC* pDC, int x, int y,
int newWidth, int newHeight);
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?