📄 basetool.h
字号:
//BaseTool.h
#if _MSC_VER > 1000
#pragma once
#endif
#ifndef _INC_BASETOOL
#define _INC_BASETOOL
#include <math.h>
class CBaseTool
{
public:
CView* m_pViewObj;
CBaseTool(CView* pMyViewObj)
{
m_pViewObj = pMyViewObj;
}
virtual short OnProMouse(UINT msg, CPoint* point, UINT nFlag)
{
return 1;
}
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -