sbgdbhdlg.cpp
来自「这是一套学校设备管理系统的源码 里面有树形结构使用的很棒的方法」· C++ 代码 · 共 43 行
CPP
43 行
// sbgdbhdlg.cpp : implementation file
//
#include "stdafx.h"
#include "xxgl.h"
#include "sbgdbhdlg.h"
#include "strt.h"
#include "ext.h"
#include "func.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
Csbgdbhdlg::Csbgdbhdlg(CWnd* pParent /*=NULL*/)
: CDialog(Csbgdbhdlg::IDD, pParent)
{
//{{AFX_DATA_INIT(Csbgdbhdlg)
m_gdbh = _T("");
//}}AFX_DATA_INIT
}
void Csbgdbhdlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(Csbgdbhdlg)
DDX_Text(pDX, IDC_EDIT1, m_gdbh);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(Csbgdbhdlg, CDialog)
//{{AFX_MSG_MAP(Csbgdbhdlg)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// Csbgdbhdlg message handlers
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?