accountinfo.cpp

来自「maybe is knn or maybe not i m not sure a」· C++ 代码 · 共 48 行

CPP
48
字号
// AccountInfo.cpp : implementation file
//

#include "stdafx.h"
#include "nospam.h"
#include "AccountInfo.h"

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

/////////////////////////////////////////////////////////////////////////////
// CAccountInfo dialog


CAccountInfo::CAccountInfo(CWnd* pParent /*=NULL*/)
	: CDialog(CAccountInfo::IDD, pParent)
{
	//{{AFX_DATA_INIT(CAccountInfo)
	m_host = _T("");
	m_passwd = _T("");
	m_user = _T("");
	//}}AFX_DATA_INIT
}


void CAccountInfo::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CAccountInfo)
	DDX_Text(pDX, IDC_HOST, m_host);
	DDX_Text(pDX, IDC_PASSWD, m_passwd);
	DDX_Text(pDX, IDC_USER, m_user);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CAccountInfo message handlers

⌨️ 快捷键说明

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