?? unloadoperationdetail.cpp
字號(hào):
// 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();
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -