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

📄 xitong.cpp

📁 用VC++6.0开发的人事信息系统
💻 CPP
字号:
// xitong.cpp : implementation file
//

#include "stdafx.h"
#include "test.h"
#include "xitong.h"

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

/////////////////////////////////////////////////////////////////////////////
// xitong property page

IMPLEMENT_DYNCREATE(xitong, CPropertyPage)

xitong::xitong() : CPropertyPage(xitong::IDD)
{
	//{{AFX_DATA_INIT(xitong)
	m_nGSDH = _T("");
	m_nGSDZ = _T("");
	m_nGSMC = _T("");
	m_nGSWZ = _T("");
	//}}AFX_DATA_INIT
}

xitong::~xitong()
{
}

void xitong::DoDataExchange(CDataExchange* pDX)
{
	CPropertyPage::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(xitong)
	DDX_Text(pDX, IDC_EDIT_GSDH, m_nGSDH);
	DDX_Text(pDX, IDC_EDIT_GSDZ, m_nGSDZ);
	DDX_Text(pDX, IDC_EDIT_GSMC, m_nGSMC);
	DDX_Text(pDX, IDC_EDIT_GSWZ, m_nGSWZ);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(xitong, CPropertyPage)
	//{{AFX_MSG_MAP(xitong)
	ON_EN_CHANGE(IDC_EDIT_GSDH, OnChange)
	ON_EN_CHANGE(IDC_EDIT_GSDZ, OnChange)
	ON_EN_CHANGE(IDC_EDIT_GSMC, OnChange)
	ON_EN_CHANGE(IDC_EDIT_GSWZ, OnChange)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// xitong message handlers

void xitong::OnChange() 
{
	// TODO: If this is a RICHEDIT control, the control will not
	// send this notification unless you override the CPropertyPage::OnInitDialog()
	// function and call CRichEditCtrl().SetEventMask()
	// with the ENM_CHANGE flag ORed into the mask.
	
	// TODO: Add your control notification handler code here
	SetModified(TRUE);
}

⌨️ 快捷键说明

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