📄 nuser.cpp
字号:
// Nuser.cpp : implementation file
//
#include "stdafx.h"
#include "DATABASE.h"
#include "Nuser.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CNuser dialog
CNuser::CNuser(CWnd* pParent /*=NULL*/)
: CDialog(CNuser::IDD, pParent)
{
//{{AFX_DATA_INIT(CNuser)
m_pas1 = _T("");
m_pas2 = _T("");
m_user = _T("");
//}}AFX_DATA_INIT
}
void CNuser::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CNuser)
DDX_Text(pDX, IDC_PAS1, m_pas1);
DDX_Text(pDX, IDC_PAS2, m_pas2);
DDX_Text(pDX, IDC_USER, m_user);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CNuser, CDialog)
//{{AFX_MSG_MAP(CNuser)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CNuser message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -