rebuilddlg.cpp

来自「数据库模拟程序 实现控制台命令词法分析」· C++ 代码 · 共 46 行

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

#include "stdafx.h"
#include "database.h"
#include "RebuildDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CRebuildDlg dialog


CRebuildDlg::CRebuildDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CRebuildDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CRebuildDlg)
	m_index = 0;
	m_str = _T("");
	//}}AFX_DATA_INIT
}


void CRebuildDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CRebuildDlg)
	DDX_Text(pDX, IDC_EDIT1, m_index);
	DDX_Text(pDX, IDC_EDIT3, m_str);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CRebuildDlg message handlers

⌨️ 快捷键说明

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