📄 optiongatekeeper.cpp
字号:
// OptionGatekeeper.cpp : implementation file
//
#include "stdafx.h"
#include "VISEP.h"
#include "OptionGatekeeper.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// COptionGatekeeper dialog
COptionGatekeeper::COptionGatekeeper(CWnd* pParent /*=NULL*/)
: CDialog(COptionGatekeeper::IDD, pParent)
{
//{{AFX_DATA_INIT(COptionGatekeeper)
m_gkAddr = _T("");
m_password = _T("");
m_userAlias = _T("");
m_userName = _T("");
//}}AFX_DATA_INIT
}
void COptionGatekeeper::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(COptionGatekeeper)
DDX_Text(pDX, IDC_GK_ADDRESS, m_gkAddr);
DDX_Text(pDX, IDC_PASSWORD, m_password);
DDX_Text(pDX, IDC_USERALIAS, m_userAlias);
DDX_Text(pDX, IDC_USERNAME, m_userName);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(COptionGatekeeper, CDialog)
//{{AFX_MSG_MAP(COptionGatekeeper)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// COptionGatekeeper message handlers
BOOL COptionGatekeeper::OnInitDialog()
{
CDialog::OnInitDialog();
UpdateData(FALSE);
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -