📄 line.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 + -