📄 information.cpp
字号:
// information.cpp : implementation file
//
#include "stdafx.h"
#include "phonebook.h"
#include "information.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// Cinformation
IMPLEMENT_DYNCREATE(Cinformation, CEditView)
Cinformation::Cinformation()
{
}
Cinformation::~Cinformation()
{
}
BEGIN_MESSAGE_MAP(Cinformation, CEditView)
//{{AFX_MSG_MAP(Cinformation)
ON_WM_CHAR()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// Cinformation drawing
void Cinformation::OnDraw(CDC* pDC)
{
CDocument* pDoc = GetDocument();
// TODO: add draw code here
}
/////////////////////////////////////////////////////////////////////////////
// Cinformation diagnostics
#ifdef _DEBUG
void Cinformation::AssertValid() const
{
CEditView::AssertValid();
}
void Cinformation::Dump(CDumpContext& dc) const
{
CEditView::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// Cinformation message handlers
void Cinformation::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags)
{
// TODO: Add your message handler code here and/or call default
CEditView::OnChar(nChar, nRepCnt, nFlags);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -