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