📄 input.cpp
字号:
///********************************************************
// \\\|///
// \\ - - //
// ( @ @ )
//┏━━━━━━━━━━━━━oOOo-(_)-oOOo━━━━━━━━━━━━┓
//┃☆☆☆☆☆☆ ≈≈≈大家好!我是【王晓钰】≈≈≈ ☆☆☆☆☆☆┃
//┃№№№№$$$$№№№№$$$$№№№№$$$$№№№№$$$ ┃
//┃¤¤※※※※ ≈≈≈≈≈≈谢谢大家的厚爱≈≈≈≈≈≈※※※※¤¤┃
//┃★★★★★主页“笑语小园”:http://xiaoyuyeah.yeah.net★★★★★┃
//┃★★★★★主页“笑语小园”:http://xiaoyuyeah.126.com ★★★★★┃
//┃★★★★★☆☆电子邮件: Garden.XiaoYu@263.net ☆☆★★★★★┃
//┃★★★★★OICQ: 285126 ★★★★★┃
//┃☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ ┃
//┃ Oooo〖王晓钰〗2001年02月12日┃
//┗━━━━━━━━━━━━━━oooO---( )━━━━━━━━━━━━┛
// ( ) ) /
// \ ( (_/
// \_)
///*******************************************************
/// Input.cpp : implementation file
//
#include "stdafx.h"
#include "replace.h"
#include "Input.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CInput dialog
CInput::CInput(CWnd* pParent /*=NULL*/)
: CDialog(CInput::IDD, pParent)
{
//{{AFX_DATA_INIT(CInput)
m_input = _T("");
//}}AFX_DATA_INIT
}
void CInput::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CInput)
DDX_Text(pDX, IDC_EDIT1, m_input);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CInput, CDialog)
//{{AFX_MSG_MAP(CInput)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CInput message handlers
void CInput::OnOK()
{
// TODO: Add extra validation here
UpdateData();
CDialog::OnOK();
}
///********************************************************
// \\\|///
// \\ - - //
// ( @ @ )
//┏━━━━━━━━━━━━━oOOo-(_)-oOOo━━━━━━━━━━━━┓
//┃☆☆☆☆☆☆ ≈≈≈大家好!我是【王晓钰】≈≈≈ ☆☆☆☆☆☆┃
//┃№№№№$$$$№№№№$$$$№№№№$$$$№№№№$$$ ┃
//┃¤¤※※※※ ≈≈≈≈≈≈谢谢大家的厚爱≈≈≈≈≈≈※※※※¤¤┃
//┃★★★★★主页“笑语小园”:http://xiaoyuyeah.yeah.net★★★★★┃
//┃★★★★★主页“笑语小园”:http://xiaoyuyeah.126.com ★★★★★┃
//┃★★★★★☆☆电子邮件: Garden.XiaoYu@263.net ☆☆★★★★★┃
//┃★★★★★OICQ: 285126 ★★★★★┃
//┃☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ ┃
//┃ Oooo〖王晓钰〗2001年02月12日┃
//┗━━━━━━━━━━━━━━oooO---( )━━━━━━━━━━━━┛
// ( ) ) /
// \ ( (_/
// \_)
///*******************************************************
/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -