?? 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 + -