📄 deletedlg.cpp
字号:
// DELETEDLG.cpp : implementation file
//
#include "stdafx.h"
#include "cj.h"
#include "DELETEDLG.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDELETEDLG dialog
CDELETEDLG::CDELETEDLG(CWnd* pParent /*=NULL*/)
: CDialog(CDELETEDLG::IDD, pParent)
{
//{{AFX_DATA_INIT(CDELETEDLG)
m_npassword = 0;
m_nxuehao = 0;
//}}AFX_DATA_INIT
}
void CDELETEDLG::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CDELETEDLG)
DDX_Text(pDX, IDC_PASS, m_npassword);
DDV_MinMaxInt(pDX, m_npassword, 0, 1000000);
DDX_Text(pDX, IDC_XUEHAO, m_nxuehao);
DDV_MinMaxInt(pDX, m_nxuehao, 0, 100000);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CDELETEDLG, CDialog)
//{{AFX_MSG_MAP(CDELETEDLG)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDELETEDLG message handlers
void CDELETEDLG::OnOK()
{
// TODO: Add extra validation here
UpdateData();
CDialog::OnOK();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -