📄 recordedit.cpp
字号:
// RecordEdit.cpp : implementation file
//
#include "stdafx.h"
#include "xiahua.h"
#include "RecordEdit.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CRecordEdit dialog
CRecordEdit::CRecordEdit(CWnd* pParent /*=NULL*/)
: CDialog(CRecordEdit::IDD, pParent)
{
//{{AFX_DATA_INIT(CRecordEdit)
m_strCase = _T("");
m_strCrt = _T("");
m_strDate = _T("");
m_strOther = _T("");
m_strWorkor = _T("");
m_strClips = _T("");
m_strContent = _T("");
m_strDevice = _T("");
m_strInfo = _T("");
//}}AFX_DATA_INIT
}
void CRecordEdit::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CRecordEdit)
DDX_Text(pDX, IDC_CASE, m_strCase);
DDX_Text(pDX, IDC_CRT, m_strCrt);
DDX_Text(pDX, IDC_DATE, m_strDate);
DDX_Text(pDX, IDC_OTHER, m_strOther);
DDX_Text(pDX, IDC_WORKOR, m_strWorkor);
DDX_Text(pDX, IDC_CLIPS, m_strClips);
DDX_Text(pDX, IDC_CONTENT, m_strContent);
DDX_Text(pDX, IDC_DEVICE, m_strDevice);
DDX_Text(pDX, IDC_INFO, m_strInfo);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CRecordEdit, CDialog)
//{{AFX_MSG_MAP(CRecordEdit)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CRecordEdit message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -