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

📄 xstatic.h

📁 TAPI编程应用
💻 H
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -