⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bginfo.cpp

📁 VS2005 MFC 实现的画图程序
💻 CPP
字号:

#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -