mudidlg.cpp

来自「是数据结构实习很好的参考范本」· C++ 代码 · 共 46 行

CPP
46
字号
// MudiDlg.cpp : implementation file
//

#include "stdafx.h"
#include "shixi07621.h"
#include "MudiDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CMudiDlg dialog


CMudiDlg::CMudiDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CMudiDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CMudiDlg)
	m_n1 = 0;
	m_n2 = 0;
	//}}AFX_DATA_INIT
}


void CMudiDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CMudiDlg)
	DDX_Text(pDX, IDC_EDIT2, m_n1);
	DDX_Text(pDX, IDC_EDIT3, m_n2);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CMudiDlg, CDialog)
	//{{AFX_MSG_MAP(CMudiDlg)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CMudiDlg message handlers

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?