popdlg.cpp

来自「一个利用生成的动态链接文件」· C++ 代码 · 共 53 行

CPP
53
字号
// Popdlg.cpp : implementation file
//

#include "stdafx.h"
#include "Test.h"
#include "Popdlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CPopdlg dialog


CPopdlg::CPopdlg(CWnd* pParent /*=NULL*/)
	: CDialog(CPopdlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CPopdlg)
	m_nR = 0;
	m_nS = 0;
	//}}AFX_DATA_INIT
}


void CPopdlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CPopdlg)
	DDX_Text(pDX, IDC_EDIT1, m_nR);
	DDX_Text(pDX, IDC_EDIT2, m_nS);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CPopdlg message handlers

int CPopdlg::DoModal() 
{
	// TODO: Add your specialized code here and/or call the base class
	
	return CDialog::DoModal();
}

⌨️ 快捷键说明

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