ddd.cpp
来自「Visual c++.程序设计培训教程」· C++ 代码 · 共 33 行
CPP
33 行
// DDD.cpp : implementation file
//
#include "stdafx.h"
#include "test.h"
#include "DDD.h"
// DDD dialog
IMPLEMENT_DYNAMIC(DDD, CDialog)
DDD::DDD(CWnd* pParent /*=NULL*/)
: CDialog(DDD::IDD, pParent)
, m_nLineWidth(0)
{
}
DDD::~DDD()
{
}
void DDD::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(DDD, CDialog)
END_MESSAGE_MAP()
// DDD message handlers
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?