📄 filepropertiesdlg.cpp
字号:
// FilePropertiesDlg.cpp : implementation file
//
#include "stdafx.h"
#include "NoteXpad.h"
#include "FilePropertiesDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CFilePropertiesDlg dialog
CFilePropertiesDlg::CFilePropertiesDlg(CWnd* pParent /*=NULL*/)
: CDialog(CFilePropertiesDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CFilePropertiesDlg)
m_FileName = _T("");
m_ParentDirectory = _T("");
m_FileSize = _T("");
m_DateModified = _T("");
m_DateCreated = _T("");
m_DateAccessed = _T("");
//}}AFX_DATA_INIT
}
void CFilePropertiesDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CFilePropertiesDlg)
DDX_Text(pDX, IDC_FILE_NAME, m_FileName);
DDX_Text(pDX, IDC_FILE_FOLDER, m_ParentDirectory);
DDX_Text(pDX, IDC_FILE_SIZE, m_FileSize);
DDX_Text(pDX, IDC_FILE_DATEMODIFIED, m_DateModified);
DDX_Text(pDX, IDC_FILE_DATECREATED, m_DateCreated);
DDX_Text(pDX, IDC_FILE_DATEACCESSED, m_DateAccessed);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CFilePropertiesDlg, CDialog)
//{{AFX_MSG_MAP(CFilePropertiesDlg)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CFilePropertiesDlg message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -