dlgatt.cpp
来自「网络文件传输,用于显示屏控制系统」· C++ 代码 · 共 52 行
CPP
52 行
// Dlgatt.cpp : implementation file
//
#include "stdafx.h"
#include "ctrl.h"
#include "Dlgatt.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDlgatt dialog
CDlgatt::CDlgatt(CWnd* pParent /*=NULL*/)
: CDialog(CDlgatt::IDD, pParent)
{
//{{AFX_DATA_INIT(CDlgatt)
m_creatime = _T("");
m_moditime = _T("");
m_path = _T("");
m_type = _T("");
m_size = _T("");
//}}AFX_DATA_INIT
}
void CDlgatt::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CDlgatt)
DDX_Text(pDX, IDC_DLG15CREATIME, m_creatime);
DDX_Text(pDX, IDC_DLG15MODITIME, m_moditime);
DDX_Text(pDX, IDC_DLG15PATH, m_path);
DDX_Text(pDX, IDC_DLG15TYPE, m_type);
DDX_Text(pDX, IDC_DLG15SIZE, m_size);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CDlgatt, CDialog)
//{{AFX_MSG_MAP(CDlgatt)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDlgatt message handlers
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?