资源简介
画图,模仿画图白板小程序源代码(Visual studio C++源代码程序)
代码片段和文件信息
// ChildFrm.cpp : implementation of the CChildframe class
//
#include “stdafx.h“
#include “Painter.h“
#include “ChildFrm.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CChildframe
IMPLEMENT_DYNCREATE(CChildframe CMDIChildWnd)
BEGIN_MESSAGE_MAP(CChildframe CMDIChildWnd)
//{{AFX_MSG_MAP(CChildframe)
ON_WM_CLOSE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CChildframe construction/destruction
CChildframe::CChildframe()
{
// TODO: add member initialization code here
}
CChildframe::~CChildframe()
{
}
BOOL CChildframe::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
cs.style = WS_CHILD | WS_VISIBLE | WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU
| FWS_ADDTOtitle | WS_THICKframe | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_MAXIMIZE;
if( !CMDIChildWnd::PreCreateWindow(cs) )
return FALSE;
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CChildframe diagnostics
#ifdef _DEBUG
void CChildframe::AssertValid() const
{
CMDIChildWnd::AssertValid();
}
void CChildframe::Dump(CDumpContext& dc) const
{
CMDIChildWnd::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CChildframe message handlers
void CChildframe::OnClose()
{
// TODO: Add your message handler code here and/or call default
CMDIChildWnd::OnClose();
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 41 2002-01-14 09:02 C++2010-01-29画图\ASFDAS.HPY
文件 114739 2002-01-14 09:02 C++2010-01-29画图\Calculator.exe
文件 1708 2002-01-14 09:02 C++2010-01-29画图\ChildFrm.cpp
文件 1282 2002-01-14 09:02 C++2010-01-29画图\ChildFrm.h
文件 17033 2002-01-14 09:02 C++2010-01-29画图\Debug\ChildFrm.obj
文件 0 2002-01-14 09:02 C++2010-01-29画图\Debug\ChildFrm.sbr
文件 12625 2002-01-14 09:02 C++2010-01-29画图\Debug\EnterTexDlg.obj
文件 0 2002-01-14 09:02 C++2010-01-29画图\Debug\EnterTexDlg.sbr
文件 16367 2002-01-14 09:02 C++2010-01-29画图\Debug\IconSet.obj
文件 0 2002-01-14 09:02 C++2010-01-29画图\Debug\IconSet.sbr
文件 29611 2002-01-18 22:07 C++2010-01-29画图\Debug\MainFrm.obj
文件 0 2002-01-18 22:07 C++2010-01-29画图\Debug\MainFrm.sbr
文件 16295 2002-01-17 19:47 C++2010-01-29画图\Debug\MdiClient.obj
文件 0 2002-01-17 19:47 C++2010-01-29画图\Debug\MdiClient.sbr
文件 5530624 2002-01-18 22:07 C++2010-01-29画图\Debug\Painter.bsc
文件 3264566 2002-01-22 00:41 C++2010-01-29画图\Debug\Painter.exe
文件 611516 2002-01-22 00:41 C++2010-01-29画图\Debug\Painter.ilk
文件 23828 2002-01-14 09:02 C++2010-01-29画图\Debug\Painter.obj
文件 7400012 2002-01-14 09:02 C++2010-01-29画图\Debug\Painter.pch
文件 656384 2002-01-22 00:41 C++2010-01-29画图\Debug\Painter.pdb
文件 196924 2002-01-22 00:41 C++2010-01-29画图\Debug\Painter.res
文件 0 2002-01-14 09:02 C++2010-01-29画图\Debug\Painter.sbr
文件 17105 2002-01-14 09:02 C++2010-01-29画图\Debug\PainterDoc.obj
文件 0 2002-01-14 09:02 C++2010-01-29画图\Debug\PainterDoc.sbr
文件 190598 2002-01-14 09:02 C++2010-01-29画图\Debug\PainterView.obj
文件 0 2002-01-14 09:02 C++2010-01-29画图\Debug\PainterView.sbr
文件 21909 2002-01-14 09:02 C++2010-01-29画图\Debug\Splash.obj
文件 0 2002-01-14 09:02 C++2010-01-29画图\Debug\Splash.sbr
文件 112723 2002-01-14 09:02 C++2010-01-29画图\Debug\StdAfx.obj
文件 1485920 2002-01-14 09:03 C++2010-01-29画图\Debug\StdAfx.sbr
............此处省略65个文件信息
- 上一篇:共享mfc的dll
- 下一篇:82道华为校招历年机试编程题C++代码附详细注释
评论
共有 条评论