📄 charview.cpp
字号:
// CharView.cpp : implementation file
//
#include "stdafx.h"
#include "dip.h"
#include "CharView.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CCharView
IMPLEMENT_DYNCREATE(CCharView, CFormView)
CCharView::CCharView()
: CFormView(CCharView::IDD)
{
//{{AFX_DATA_INIT(CCharView)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
CCharView::~CCharView()
{
}
void CCharView::DoDataExchange(CDataExchange* pDX)
{
CFormView::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CCharView)
DDX_Control(pDX, IDC_EDIT_RESULT, m_result);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CCharView, CFormView)
//{{AFX_MSG_MAP(CCharView)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CCharView diagnostics
#ifdef _DEBUG
void CCharView::AssertValid() const
{
CFormView::AssertValid();
}
void CCharView::Dump(CDumpContext& dc) const
{
CFormView::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CCharView message handlers
void CCharView::OnOK()
{
// TODO: Add your control notification handler code here
}
void CCharView::OnCancel()
{
// TODO: Add your control notification handler code here
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -