GradientCaptionBackground.h
上传用户:zhoushen
上传日期:2022-06-15
资源大小:84k
文件大小:1k
源码类别:
对话框与窗口
开发平台:
Visual C++
- #ifndef GRADIENT_CAPTION_H
- #define GRADIENT_CAPTION_H
- /////////////////////////////////
- // Class for painting a windows caption background as
- // a shaded gradient.
- //
- // Used by custom caption class CCaption and its derived classes.
- //
- //
- // Author: Dave Lorde (dlorde@cix.compulink.co.uk)
- //
- // Copyright January 2000
- //
- #include "CaptionBackground.h"
- class AFX_EXT_CLASS CGradientCaptionBackground : public CCaptionBackground
- {
- public:
- void Paint(CDC* pDC, CSize paintArea, BOOL active);
- };
- #endif