filddlg.cpp
来自「Visual_C++.NET实用编程百例」· C++ 代码 · 共 34 行
CPP
34 行
// FildDlg.cpp : 实现文件
//
#include "stdafx.h"
#include "database.h"
#include "FildDlg.h"
// CFildDlg 对话框
IMPLEMENT_DYNAMIC(CFildDlg, CDialog)
CFildDlg::CFildDlg(CWnd* pParent /*=NULL*/)
: CDialog(CFildDlg::IDD, pParent)
, m_strName(_T(""))
{
}
CFildDlg::~CFildDlg()
{
}
void CFildDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
DDX_Text(pDX, IDC_EDIT1, m_strName);
}
BEGIN_MESSAGE_MAP(CFildDlg, CDialog)
END_MESSAGE_MAP()
// CFildDlg 消息处理程序
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?