⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dldlg.cpp

📁 旅行社的业务帮助系统
💻 CPP
字号:
// DLDlg.cpp : implementation file
//

#include "stdafx.h"
#include "LXS.h"
#include "DLDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CDLDlg dialog


CDLDlg::CDLDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CDLDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CDLDlg)
	m_Password = _T("");
	m_yhm = _T("");
	//}}AFX_DATA_INIT
}


void CDLDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CDLDlg)
	DDX_Text(pDX, IDC_EDIT2, m_Password);
	DDX_Text(pDX, IDC_EDIT1, m_yhm);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CDLDlg, CDialog)
	//{{AFX_MSG_MAP(CDLDlg)
	ON_WM_CLOSE()
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDLDlg message handlers

BOOL CDLDlg::OnInitDialog() 
{
	CDialog::OnInitDialog();
	m_yhm=_T("管理员");
    UpdateData(FALSE);
	// TODO: Add extra initialization here
	
	return TRUE;  // return TRUE unless you set the focus to a control
	              // EXCEPTION: OCX Property Pages should return FALSE
}

void CDLDlg::OnCancel() 
{
	// TODO: Add extra cleanup here
	
CDialog::OnCancel();
}

void CDLDlg::OnClose() 
{
	// TODO: Add your message handler code here and/or call default
	
	CDialog::OnClose();
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -