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

📄 line.h

📁 这是一个基本的画图程序
💻 H
字号:
// line.h : interface of the CPaintLine class
//
/////////////////////////////////////////////////////////////////////////////

class CPaintLine : public CPainted
{
public:
    CPaintLine() {};

  	void Draw(CDC* pCDC);
	void DragDraw(CDC* pCDC, CPoint& pointDragged);
	void DrawSelected(CDC* pCDC);

	void OnDown(CPoint& pointDown);
	void OnUp(CPoint& pointUp, CWnd* pWnd);

	virtual BOOL IsHit(CPoint& pointBang);
	void Serialize(CArchive& ar);
	void GetBoundingRect(CRect* pRect);

protected:
	DECLARE_SERIAL(CPaintLine)

	CPoint m_pointEnd;
};


⌨️ 快捷键说明

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