📄 filenewdlg.cpp
字号:
// FileNewDlg.cpp : implementation file
//
#include "stdafx.h"
#include "DFYSimulator.h"
#include "FileNewDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CFileNewDlg dialog
CFileNewDlg::CFileNewDlg(CWnd* pParent /*=NULL*/)
: CDialog(CFileNewDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CFileNewDlg)
m_strFileName = _T("");
m_strFilePath = _T("");
//}}AFX_DATA_INIT
}
void CFileNewDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CFileNewDlg)
DDX_Text(pDX, IDC_EDIT_FILE, m_strFileName);
DDX_Text(pDX, IDC_PATH, m_strFilePath);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CFileNewDlg, CDialog)
//{{AFX_MSG_MAP(CFileNewDlg)
ON_BN_CLICKED(IDC_BROWSE, OnBrowse)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CFileNewDlg message handlers
void CFileNewDlg::OnBrowse()
{
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -