filetransdialog.cpp

来自「柴油机的控制和状态检测使用的是电子设备ECU,ECU内运行的程序(生产文件)要在」· C++ 代码 · 共 59 行

CPP
59
字号
// FileTransDialog.cpp : implementation file
//

#include "stdafx.h"
#include "SocketFile.h"
#include "FileTransDialog.h"

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

/////////////////////////////////////////////////////////////////////////////
// CFileTransDialog dialog


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


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


BEGIN_MESSAGE_MAP(CFileTransDialog, CDialog)
	//{{AFX_MSG_MAP(CFileTransDialog)
	ON_BN_CLICKED(IDCOK, OnCok)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CFileTransDialog message handlers

void CFileTransDialog::OnOK() 
{
	CDialog::OnOK();
}

void CFileTransDialog::OnCancel() 
{
	CDialog::OnCancel();
}

void CFileTransDialog::OnCok() 
{
	CDialog::OnOK();
}

⌨️ 快捷键说明

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