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

📄 wpower.cpp

📁 基于WIN CE 的抄表系统,环境wince .net
💻 CPP
字号:
// WPower.cpp : implementation file
//

#include "stdafx.h"
#include "Cbsystem.h"
#include "WPower.h"

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

/////////////////////////////////////////////////////////////////////////////
// CWPower dialog


CWPower::CWPower(CWnd* pParent /*=NULL*/)
	: CDialog(CWPower::IDD, pParent)
{
	//{{AFX_DATA_INIT(CWPower)
	m_bh = _T("");
	m_name = _T("");
	m_id = _T("");
	m_power = _T("");
	m_powerold = _T("");
	//}}AFX_DATA_INIT
}


void CWPower::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CWPower)
	DDX_Text(pDX, IDC_EDIT1, m_bh);
	DDX_Text(pDX, IDC_EDIT2, m_name);
	DDX_Text(pDX, IDC_EDIT3, m_id);
	DDX_Text(pDX, IDC_EDIT5, m_power);
	DDX_Text(pDX, IDC_EDIT4, m_powerold);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CWPower, CDialog)
	//{{AFX_MSG_MAP(CWPower)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CWPower message handlers

⌨️ 快捷键说明

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