• 大小: 93KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-07
  • 语言: C/C++
  • 标签:

资源简介

别因为我把资源分设的这么高,就认为我很自私。其实这个程序是我在两天内,熬夜通宵、加班加点赶出来的。 实现的功能多元化,用鼠标拖动画各种直线、矩形、椭圆、多边形、修正全部bug,另外还有个旋转的五角星。保证您下了绝不后悔。大作业觉对拿满分。 有事请加我加我QQ:983460327

资源截图

代码片段和文件信息

// MainFrm.cpp : CMainframe 类的实现
//

#include “stdafx.h“
#include “MyPaint.h“

#include “MainFrm.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// CMainframe

IMPLEMENT_DYNCREATE(CMainframe CframeWnd)

BEGIN_MESSAGE_MAP(CMainframe CframeWnd)
ON_WM_CREATE()
END_MESSAGE_MAP()

static UINT indicators[] =
{
ID_SEPARATOR           // 状态行指示器
ID_INDICATOR_CAPS
ID_INDICATOR_NUM
ID_INDICATOR_SCRL
};


// CMainframe 构造/析构

CMainframe::CMainframe()
{
// TODO: 在此添加成员初始化代码
}

CMainframe::~CMainframe()
{
}


int CMainframe::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CframeWnd::OnCreate(lpCreateStruct) == -1)
return -1;

if (!m_wndToolBar.CreateEx(this TBstyle_FLAT WS_CHILD | WS_VISIBLE | CBRS_TOP
| CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
!m_wndToolBar.LoadToolBar(IDR_MAINframe))
{
TRACE0(“未能创建工具栏\n“);
return -1;      // 未能创建
}

if (!m_wndStatusBar.Create(this) ||
!m_wndStatusBar.SetIndicators(indicators
  sizeof(indicators)/sizeof(UINT)))
{
TRACE0(“未能创建状态栏\n“);
return -1;      // 未能创建
}

// TODO: 如果不需要工具栏可停靠,则删除这三行
m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
EnableDocking(CBRS_ALIGN_ANY);
DockControlBar(&m_wndToolBar);

return 0;
}

BOOL CMainframe::PreCreateWindow(CREATESTRUCT& cs)
{
if( !CframeWnd::PreCreateWindow(cs) )
return FALSE;
// TODO: 在此处通过修改
//  CREATESTRUCT cs 来修改窗口类或样式

return TRUE;
}


// CMainframe 诊断

#ifdef _DEBUG
void CMainframe::AssertValid() const
{
CframeWnd::AssertValid();
}

void CMainframe::Dump(CDumpContext& dc) const
{
CframeWnd::Dump(dc);
}

#endif //_DEBUG


// CMainframe 消息处理程序




 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1797  2009-09-21 15:03  MyPaint\MainFrm.cpp

     文件        655  2009-09-21 15:03  MyPaint\MainFrm.h

     文件      84996  2009-09-25 11:02  MyPaint\MyPaint.aps

     文件       3454  2009-09-21 16:05  MyPaint\MyPaint.cpp

     文件        473  2009-09-21 15:03  MyPaint\MyPaint.h

     文件      13065  2009-09-25 11:02  MyPaint\MyPaint.rc

     文件        600  2009-09-21 15:03  MyPaint\MyPaint.reg

     文件       5925  2009-09-21 15:44  MyPaint\MyPaint.vcproj

     文件       1413  2009-09-25 11:02  MyPaint\MyPaint.vcproj.awain-PC.awain.user

     文件       1033  2009-09-21 15:03  MyPaint\MyPaintDoc.cpp

     文件        552  2009-09-21 15:03  MyPaint\MyPaintDoc.h

     文件      14743  2009-09-25 10:41  MyPaint\MyPaintView.cpp

     文件       3190  2009-09-22 17:53  MyPaint\MyPaintView.h

     文件       3855  2009-09-21 15:03  MyPaint\ReadMe.txt

     文件      19230  2009-09-21 16:03  MyPaint\res\MyPaint.ico

     文件        363  2009-09-21 15:03  MyPaint\res\MyPaint.rc2

     文件      19230  2009-09-21 16:03  MyPaint\res\MyPaintDoc.ico

     文件       1078  2005-11-11 22:45  MyPaint\res\Toolbar.bmp

     文件       1619  2009-09-21 15:39  MyPaint\Resource.h

     文件        138  2009-09-21 15:03  MyPaint\stdafx.cpp

     文件       2489  2009-09-21 15:03  MyPaint\stdafx.h

     目录          0  2009-09-25 11:03  MyPaint\Debug

     目录          0  2009-09-21 16:13  MyPaint\res

     目录          0  2009-09-25 11:02  MyPaint

     文件     188416  2009-09-25 11:02  MyPaint\Debug\MyPaint.exe

----------- ---------  ---------- -----  ----

               368314                    25


评论

共有 条评论

相关资源