?? transduty.cpp
字號:
// TRansduty.cpp : implementation file
//
#include "stdafx.h"
#include "GSMTest.h"
#include "TRansduty.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CTRansduty dialog
CTRansduty::CTRansduty(CWnd* pParent /*=NULL*/)
: CDialog(CTRansduty::IDD, pParent)
{
//{{AFX_DATA_INIT(CTRansduty)
m_name = _T("");
m_telnum = _T("");
m_place = _T("");
//}}AFX_DATA_INIT
}
void CTRansduty::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CTRansduty)
DDX_Text(pDX, IDC_EDIT1, m_name);
DDX_Text(pDX, IDC_EDIT2, m_telnum);
DDX_Text(pDX, IDC_EDIT3, m_place);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CTRansduty, CDialog)
//{{AFX_MSG_MAP(CTRansduty)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CTRansduty message handlers
void CTRansduty::OnOK()
{
// TODO: Add extra validation here
CDialog::OnOK();
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -