资源简介
可以画椭圆 直线 三角形等简单图形
使用的是mfc 对话框模式
代码片段和文件信息
// Paint.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Paint.h“
#include “PaintDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CPaintApp
BEGIN_MESSAGE_MAP(CPaintApp CWinApp)
//{{AFX_MSG_MAP(CPaintApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CPaintApp construction
CPaintApp::CPaintApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CPaintApp object
CPaintApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CPaintApp initialization
BOOL CPaintApp::InitInstance()
{
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
CPaintDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2 2009-05-25 13:48 Paint\ColoreDialog.h
文件 756768 2009-12-16 23:29 Paint\Paint.aps
文件 1176 2009-12-16 23:30 Paint\Paint.clw
文件 2016 2009-05-25 11:20 Paint\Paint.cpp
文件 4541 2009-05-28 11:20 Paint\Paint.dsp
文件 518 2009-05-25 11:20 Paint\Paint.dsw
文件 1313 2009-05-25 11:20 Paint\Paint.h
文件 287744 2009-12-16 23:31 Paint\Paint.ncb
文件 48640 2009-12-16 23:31 Paint\Paint.opt
文件 244 2009-12-16 23:29 Paint\Paint.plg
文件 5852 2009-05-28 09:52 Paint\Paint.rc
文件 5528 2009-05-31 11:21 Paint\PaintDlg.cpp
文件 1836 2009-05-31 11:09 Paint\PaintDlg.h
文件 3561 2009-05-25 11:20 Paint\ReadMe.txt
文件 7398 2009-05-28 09:52 Paint\res\icon1.ico
文件 766 2009-11-25 02:49 Paint\res\icon4.ico
文件 7398 2009-05-28 09:52 Paint\res\Paint.ico
文件 397 2009-05-25 11:20 Paint\res\Paint.rc2
文件 621654 2009-05-28 08:15 Paint\res\profiles.bmp
文件 99734 2009-05-28 09:36 Paint\res\profiles1.bmp
文件 1278 2009-05-28 09:52 Paint\resource.h
文件 207 2009-05-25 11:20 Paint\StdAfx.cpp
文件 999 2009-05-25 11:20 Paint\StdAfx.h
目录 0 2009-11-25 02:49 Paint\res
目录 0 2010-03-29 12:17 Paint
----------- --------- ---------- ----- ----
1859570 25
- 上一篇:MFC实现DES加密解密实现
- 下一篇:vc下的sift程序
相关资源
- MFC实现DES加密解密实现
- SMTP邮件发送MFC、VC++
- mfc odbc access 数据库操作增,删,减,
- C++视频聊天
- MFC_学生管理系统104735
- MFC制作的风车可以控制叶片大小和旋
- MFC画图,温度和湿度曲线含源码
- MFC+SQL实现资源管理系统
- RSA加密算法用MFC实现
- 基于MFC的计算器
- MFC入门绘图程序,可以实现Window环境
- 考勤管理系统 mfc C++课程设计(附数据
- 人事管理系统 mfc C++课程设计(附数据
- vc计算器源代码支持各种进制正余弦的
- 简单的学生管理系统源码MFC
- VC+MFC 托盘图标闪烁与消息提示
- VC++MFC学生管理系统
- MFC画图板绘图并保存图片导出
- mfc实现学生信息管理系统
- MFC版的一个简单作业调度系统
- 用c++做数据曲线和函数曲线
- LL(1)分析器 MFC实现 源代码
- MFC课程设计1.rar
- 数据结构课程设计vc6.o编译有MFC界面的
- MFC简易计算器含加减乘除,平方,立
- vcMfcUsbPort完整上位机源码
- MFC局域网聊天室C++
- 进程管理模拟 VC++ mfc实现
- 贪吃蛇(有完全源码和每一个功能的
- 用MFC制作一个截屏小工具
评论
共有 条评论