📄 algview.cpp
字号:
// AlgView.cpp : 实现文件
//
#include "stdafx.h"
#include "GreedyTP.h"
#include "AlgView.h"
// CAlgView
IMPLEMENT_DYNCREATE(CAlgView, CView)
CAlgView::CAlgView()
{
}
CAlgView::~CAlgView()
{
}
BEGIN_MESSAGE_MAP(CAlgView, CView)
END_MESSAGE_MAP()
// CAlgView 绘图
void CAlgView::OnDraw(CDC* pDC)
{
CDocument* pDoc = GetDocument();
// TODO: 在此添加绘制代码
}
// CAlgView 诊断
#ifdef _DEBUG
void CAlgView::AssertValid() const
{
CView::AssertValid();
}
void CAlgView::Dump(CDumpContext& dc) const
{
CView::Dump(dc);
}
#endif //_DEBUG
// CAlgView 消息处理程序
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -