📄 exploretool.cpp
字号:
// ExploreTool.cpp : implementation file
//
#include "stdafx.h"
#include "DiamondReader.h"
#include "ExploreTool.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CExploreTool
IMPLEMENT_DYNCREATE(CExploreTool, CFormView)
CExploreTool::CExploreTool()
: CFormView(CExploreTool::IDD)
{
//{{AFX_DATA_INIT(CExploreTool)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
CExploreTool::~CExploreTool()
{
}
void CExploreTool::DoDataExchange(CDataExchange* pDX)
{
CFormView::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CExploreTool)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CExploreTool, CFormView)
//{{AFX_MSG_MAP(CExploreTool)
//}}AFX_MSG_MAP
ON_WM_MOUSEMOVE()
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CExploreTool diagnostics
#ifdef _DEBUG
void CExploreTool::AssertValid() const
{
CFormView::AssertValid();
}
void CExploreTool::Dump(CDumpContext& dc) const
{
CFormView::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CExploreTool message handlers
void CExploreTool::OnMouseMove(UINT nFlags, CPoint point){
//AfxMessageBox("");
}
void CExploreTool::OnNcMouseMove(UINT nHitTest, CPoint point){
//AfxMessageBox("");
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -