📄 dlgchangltdpass.cpp
字号:
// Dlgchangltdpass.cpp : implementation file
//
#include "stdafx.h"
#include "ctrl.h"
#include "Dlgchangltdpass.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDlgchangltdpass dialog
CDlgchangltdpass::CDlgchangltdpass(CWnd* pParent /*=NULL*/)
: CDialog(CDlgchangltdpass::IDD, pParent)
{
//{{AFX_DATA_INIT(CDlgchangltdpass)
m_newltdpass = _T("");
m_oldltdpass = _T("");
m_tic_dns = _T("");
//}}AFX_DATA_INIT
}
void CDlgchangltdpass::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CDlgchangltdpass)
DDX_Text(pDX, IDC_NEWLTDPASS, m_newltdpass);
DDX_Text(pDX, IDC_OLDLTDPASS, m_oldltdpass);
DDX_Text(pDX, IDC_TIC_DNS, m_tic_dns);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CDlgchangltdpass, CDialog)
//{{AFX_MSG_MAP(CDlgchangltdpass)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDlgchangltdpass message handlers
void CDlgchangltdpass::OnOK()
{
// TODO: Add extra validation here
flagidok=1;
CDialog::OnOK();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -