xstatic.h
来自「TAPI编程应用」· C头文件 代码 · 共 48 行
H
48 行
// xstatic.h : header file for CXstatic class
// (c) Dialogic corp 1995, 1996
//
#define RED RGB(255, 0, 0)
#define GREEN RGB(0, 255, 0)
#define BLUE RGB(0, 0, 255)
#define BLACK RGB(0, 0, 0)
#define YELLOW RGB(255, 255, 0)
#define PURPLE RGB(150, 0, 150)
#define BROWN RGB(148, 62, 52)
#define ORANGE RGB(255, 100, 10)
/////////////////////////////////////////////////////////////////////////////
// CXstatic window
class CXstatic : public CStatic
{
// Construction
public:
CXstatic();
// Attributes
public:
COLORREF m_Colorref;
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CXstatic)
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CXstatic();
// Generated message map functions
protected:
//{{AFX_MSG(CXstatic)
afx_msg void OnPaint();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?