unloadoperationdetail.cpp

来自「码头手持机项目,用于统计集装箱,轮船的情况,手持机采用S3C2440处理器,数据」· C++ 代码 · 共 62 行

CPP
62
字号
// UnloadOperationDetail.cpp : implementation file
//

#include "stdafx.h"
#include "CTSClient.h"
#include "UnloadOperationDetail.h"

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

/////////////////////////////////////////////////////////////////////////////
// UnloadOperationDetail dialog


UnloadOperationDetail::UnloadOperationDetail(CWnd* pParent /*=NULL*/)
	: CDialog(UnloadOperationDetail::IDD, pParent)
{
	//{{AFX_DATA_INIT(UnloadOperationDetail)
	m_containerNo = _T("");
	m_sealNo = _T("");
	modify = false;
	//}}AFX_DATA_INIT
}


void UnloadOperationDetail::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(UnloadOperationDetail)
	DDX_Text(pDX, IDC_EDIT1, m_containerNo);
	DDX_Text(pDX, IDC_EDIT2, m_sealNo);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(UnloadOperationDetail, CDialog)
	//{{AFX_MSG_MAP(UnloadOperationDetail)
	ON_BN_CLICKED(IDC_BUTTON4, OnCancel)
	ON_BN_CLICKED(IDC_BUTTON1, OnOK)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// UnloadOperationDetail message handlers

void UnloadOperationDetail::OnCancel() 
{
	// TODO: Add your control notification handler code here
	modify = false;
	CDialog::OnCancel();
}

void UnloadOperationDetail::OnOK() 
{
	// TODO: Add your control notification handler code here
	modify = true;
	CDialog::OnOK();
}

⌨️ 快捷键说明

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