readfiledlg.cpp

来自「从FTP下载文件下载到本地」· C++ 代码 · 共 61 行

CPP
61
字号
// ReadFileDlg.cpp : implementation file
//

#include "stdafx.h"
#include "AccountInput.h"
#include "ReadFileDlg.h"
#include "MainFrm.h"

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

/////////////////////////////////////////////////////////////////////////////
// CReadFileDlg dialog


CReadFileDlg::CReadFileDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CReadFileDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CReadFileDlg)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}


void CReadFileDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CReadFileDlg)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}


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


BOOL CReadFileDlg::OnInitDialog() 
{
	CDialog::OnInitDialog();
	
	// TODO: Add extra initialization here
	
   	return TRUE;  // return TRUE unless you set the focus to a control
	              // EXCEPTION: OCX Property Pages should return FALSE
}



void CReadFileDlg::OnOK() 
{
	// TODO: Add extra validation here

	CDialog::OnOK();
}

⌨️ 快捷键说明

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