📄 result.cpp
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -