?? 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 + -