⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 accountdialog.cpp

📁 Visual C++ 网络通信编程实用案例精选 的配套光盘
💻 CPP
字号:
// AccountDialog.cpp : implementation file
//

#include "stdafx.h"
#include "MyFtpServer.h"
#include "AccountDialog.h"

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

/////////////////////////////////////////////////////////////////////////////
// CAccountDialog dialog


CAccountDialog::CAccountDialog(CWnd* pParent /*=NULL*/)
	: CDialog(CAccountDialog::IDD, pParent)
{
	//{{AFX_DATA_INIT(CAccountDialog)
	m_directory = _T("");
	m_password = _T("anonymous");
	m_user = _T("anonymous");
	//}}AFX_DATA_INIT
}


void CAccountDialog::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CAccountDialog)
	DDX_Text(pDX, IDC_DIRECTORY, m_directory);
	DDX_Text(pDX, IDC_PASSWORD, m_password);
	DDX_Text(pDX, IDC_USER, m_user);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CAccountDialog message handlers

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

⌨️ 快捷键说明

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