childdlg.cpp
来自「《Visual C++视频技术方案宝典》配套光盘」· C++ 代码 · 共 42 行
CPP
42 行
// ChildDlg.cpp : implementation file
//
#include "stdafx.h"
#include "InheritedDlg.h"
#include "ChildDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CChildDlg dialog
CChildDlg::CChildDlg(UINT DLGID,CWnd* pParent /*=NULL*/)
: CInheritedDlgDlg(DLGID, pParent)
{
//{{AFX_DATA_INIT(CChildDlg)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void CChildDlg::DoDataExchange(CDataExchange* pDX)
{
CInheritedDlgDlg::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CChildDlg)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CChildDlg, CInheritedDlgDlg)
//{{AFX_MSG_MAP(CChildDlg)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CChildDlg message handlers
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?