📄 downview.h
字号:
#pragma once
typedef struct mesh1
{
int i;
RECT rect;
POINT point;
}MESH1;
// CDownView 视图
class CDownView : public CView
{
DECLARE_DYNCREATE(CDownView)
protected:
CDownView(); // 动态创建所使用的受保护的构造函数
virtual ~CDownView();
public:
virtual void OnDraw(CDC* pDC); // 重写以绘制该视图
#ifdef _DEBUG
virtual void AssertValid() const;
#ifndef _WIN32_WCE
virtual void Dump(CDumpContext& dc) const;
#endif
#endif
protected:
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -