?? accountno2.cpp
字號:
// Accountno2.cpp : implementation file
//
#include "stdafx.h"
#include "ATM.h"
#include "Accountno2.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CAccountno2 dialog
CAccountno2::CAccountno2(CWnd* pParent /*=NULL*/)
: CDialog(CAccountno2::IDD, pParent)
{
//{{AFX_DATA_INIT(CAccountno2)
m_accountno2 = _T("");
//}}AFX_DATA_INIT
}
void CAccountno2::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CAccountno2)
DDX_Control(pDX, IDC_ACCOUNTNO2, m_accountno2edit);
DDX_Text(pDX, IDC_ACCOUNTNO2, m_accountno2);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CAccountno2, CDialog)
//{{AFX_MSG_MAP(CAccountno2)
ON_BN_CLICKED(IDC_CORRECT, OnCorrect)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CAccountno2 message handlers
void CAccountno2::OnCorrect()
{
// TODO: Add your control notification handler code here
m_accountno2edit.SetWindowText("");
}
void CAccountno2::OnOK()
{
// TODO: Add extra validation here
CDialog::OnOK();
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -