chaxundlg.cpp

来自「用Delphi设计学院库房管理数据库系统。系统由三部分组成:物资供应管理系统」· C++ 代码 · 共 53 行

CPP
53
字号
// ChaxunDlg.cpp : implementation file
//

#include "stdafx.h"
#include "kufangDBS.h"
#include "ChaxunDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CChaxunDlg dialog


CChaxunDlg::CChaxunDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CChaxunDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CChaxunDlg)
	m_strZiduan = _T("");
	m_strValue = _T("");
	//}}AFX_DATA_INIT
}


void CChaxunDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CChaxunDlg)
	DDX_Control(pDX, IDC_LIST_CHAXUN, m_listChaxun);
	DDX_CBString(pDX, IDC_COMBO_ZIDUAN, m_strZiduan);
	DDX_Text(pDX, IDC_EDIT_VALUE, m_strValue);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CChaxunDlg, CDialog)
	//{{AFX_MSG_MAP(CChaxunDlg)
	ON_BN_CLICKED(IDC_BTN_CX_CHAXUN, OnBtnCxChaxun)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CChaxunDlg message handlers

void CChaxunDlg::OnBtnCxChaxun() 
{
	// TODO: Add your control notification handler code here
	
}

⌨️ 快捷键说明

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