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