📄 dialogv.cpp
字号:
// DialogV.cpp : implementation file
//
#include "stdafx.h"
#include "graph.h"
#include "DialogV.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDialogV dialog
CDialogV::CDialogV(CWnd* pParent /*=NULL*/)
: CDialog(CDialogV::IDD, pParent)
{
//{{AFX_DATA_INIT(CDialogV)
m_strName = _T("");
m_nDu = 0;
//}}AFX_DATA_INIT
}
void CDialogV::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CDialogV)
DDX_Text(pDX, IDC_EDIT1, m_strName);
DDX_Text(pDX, IDC_EDIT2, m_nDu);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CDialogV, CDialog)
//{{AFX_MSG_MAP(CDialogV)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDialogV message handlers
BOOL CDialogV::OnInitDialog()
{
CDialog::OnInitDialog();
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -