📄 reportdialog.cpp
字号:
// ReportDialog.cpp : implementation file
//
#include "stdafx.h"
#include "Commucation.h"
#include "ReportDialog.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CReportDialog dialog
CReportDialog::CReportDialog(CWnd* pParent /*=NULL*/)
: CDialog(CReportDialog::IDD, pParent)
{
//{{AFX_DATA_INIT(CReportDialog)
m_Report1 = _T("");
m_Report3 = _T("");
m_Report4 = _T("");
m_Report5 = _T("");
m_Report6 = _T("");
m_Report7 = _T("");
m_Report8 = _T("");
m_Report9 = _T("");
m_Report10 = _T("");
//}}AFX_DATA_INIT
}
void CReportDialog::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CReportDialog)
DDX_Text(pDX, IDC_STATICA, m_Report1);
DDX_Text(pDX, IDC_STATICC, m_Report3);
DDX_Text(pDX, IDC_STATICD, m_Report4);
DDX_Text(pDX, IDC_STATICE, m_Report5);
DDX_Text(pDX, IDC_STATICF, m_Report6);
DDX_Text(pDX, IDC_STATICG, m_Report7);
DDX_Text(pDX, IDC_STATICH, m_Report8);
DDX_Text(pDX, IDC_STATICI, m_Report9);
DDX_Text(pDX, IDC_STATICJ, m_Report10);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CReportDialog, CDialog)
//{{AFX_MSG_MAP(CReportDialog)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CReportDialog message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -