result.cpp
来自「一个很全的编译器程序,有各种文法的代码,各种方法都分开写的」· C++ 代码 · 共 51 行
CPP
51 行
// result.cpp : implementation file
//
#include "stdafx.h"
#include "face.h"
#include "result.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// Cresult dialog
Cresult::Cresult(CWnd* pParent /*=NULL*/)
: CDialog(Cresult::IDD, pParent)
{
//{{AFX_DATA_INIT(Cresult)
m_tEdit = _T("");
//}}AFX_DATA_INIT
}
void Cresult::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(Cresult)
DDX_Text(pDX, IDC_EDIT, m_tEdit);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(Cresult, CDialog)
//{{AFX_MSG_MAP(Cresult)
ON_BN_CLICKED(IDC_RETURN, OnReturn)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// Cresult message handlers
//关闭解释执行的结果对话框:
void Cresult::OnReturn()
{
CDialog::OnCancel();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?