bginfo.cpp
来自「VS2005 MFC 实现的画图程序」· C++ 代码 · 共 48 行
CPP
48 行
#include "stdafx.h"
#include "GDraw.h"
#include "BgInfo.h"
// BgInfo
IMPLEMENT_DYNCREATE(BgInfo, CFormView)
BgInfo::BgInfo()
: CFormView(BgInfo::IDD)
{
// SetDlgItemInt(IDC_WIDTH,800);
}
BgInfo::~BgInfo()
{
}
void BgInfo::DoDataExchange(CDataExchange* pDX)
{
CFormView::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(BgInfo, CFormView)
END_MESSAGE_MAP()
// BgInfo 诊断
#ifdef _DEBUG
void BgInfo::AssertValid() const
{
CFormView::AssertValid();
}
#ifndef _WIN32_WCE
void BgInfo::Dump(CDumpContext& dc) const
{
CFormView::Dump(dc);
}
#endif
#endif //_DEBUG
// BgInfo 消息处理程序
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?