input.cpp

来自「本原代码集合了树形控件」· C++ 代码 · 共 50 行

CPP
50
字号
// input.cpp : implementation file
//

#include "stdafx.h"
#include "hellor14.h"
#include "input.h"

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

/////////////////////////////////////////////////////////////////////////////
// input dialog


input::input(CWnd* pParent /*=NULL*/)
	: CDialog(input::IDD, pParent)
{
	//{{AFX_DATA_INIT(input)
	m_dimension1 = _T("");
	//}}AFX_DATA_INIT
}


void input::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(input)
	DDX_Text(pDX, IDC_EDIT1, m_dimension1);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(input, CDialog)
	//{{AFX_MSG_MAP(input)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// input message handlers

void input::OnOK() 
{
	// TODO: Add extra validation here
	
	CDialog::OnOK();
}

⌨️ 快捷键说明

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