资源简介
一个自己写的MFC程序,能够实现一些简单几何图片的检测,比如正方形等规则图形。
代码片段和文件信息
// OpenPic.cpp : implementation file
//
#include “stdafx.h“
#include “TraitDetection.h“
#include “OpenPic.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// COpenPic
IMPLEMENT_DYNAMIC(COpenPic CFileDialog)
COpenPic::COpenPic(BOOL bOpenFileDialog LPCTSTR lpszDefExt LPCTSTR lpszFileName
DWORD dwFlags LPCTSTR lpszFilter CWnd* pParentWnd) :
CFileDialog(bOpenFileDialog lpszDefExt lpszFileName dwFlags lpszFilter pParentWnd)
{
}
BEGIN_MESSAGE_MAP(COpenPic CFileDialog)
//{{AFX_MSG_MAP(COpenPic)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
void COpenPic::OnFileNameChange()
{
//如果选择有文件
if(!GetPathName().IsEmpty())
{
CFile selFile;
if(!selFile.Open(GetPathName()CFile::modeRead))
return ;
}
return;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2009-08-19 08:25 TraitDetection\
文件 980 2009-06-22 08:50 TraitDetection\OpenPic.cpp
文件 1112 2009-06-22 08:50 TraitDetection\OpenPic.h
文件 3723 2009-06-22 08:41 TraitDetection\ReadMe.txt
目录 0 2009-07-04 20:30 TraitDetection\res\
文件 1105 2009-07-02 10:00 TraitDetection\resource.h
文件 1078 2009-06-22 08:41 TraitDetection\res\TraitDetection.ico
文件 406 2009-06-22 08:41 TraitDetection\res\TraitDetection.rc2
文件 216 2009-06-22 08:41 TraitDetection\StdAfx.cpp
文件 1054 2009-06-22 08:41 TraitDetection\StdAfx.h
文件 37084 2009-07-02 10:00 TraitDetection\TraitDetection.aps
文件 2085 2009-07-04 20:29 TraitDetection\TraitDetection.clw
文件 2175 2009-06-22 08:41 TraitDetection\TraitDetection.cpp
文件 4527 2009-06-26 11:36 TraitDetection\TraitDetection.dsp
文件 536 2009-06-22 08:41 TraitDetection\TraitDetection.dsw
文件 1412 2009-06-22 08:41 TraitDetection\TraitDetection.h
文件 66560 2009-07-04 20:29 TraitDetection\TraitDetection.ncb
文件 56832 2009-07-04 20:29 TraitDetection\TraitDetection.opt
文件 1550 2009-07-04 20:27 TraitDetection\TraitDetection.plg
文件 6771 2009-07-02 10:00 TraitDetection\TraitDetection.rc
文件 14337 2009-07-04 20:27 TraitDetection\TraitDetectionDlg.cpp
文件 1988 2009-07-04 20:06 TraitDetection\TraitDetectionDlg.h
- 上一篇:串口通讯编程支持RS232-RS485通讯协议C++
- 下一篇:C语言回文判断
相关资源
- MFC写的录屏代码,保存格式为AVI
- MFC 与UG开发教程与视频
- 基于MFC类库的端口扫描器设计与实现
- snmp++实现Trap接收
- vc_mbcsmfc.exe
- 面向对象的编程技术课程设计VC++_MF
- mfc画一个五角星的可以运行
- cannot open file \“mfc42ud.lib\“ 错误可该
- VC++高精度媒体定时器的使用_MFC
- MFC_酒店管理系统
- MFC 计算器源代码
- MFC 导入D3D模型文件
- 旋转的风车,使用MFC编写
- MFC用户名密码登陆对话框
- C++实现银行储蓄系统 MFC界面
- 空间后方交会(基于MFC)
- 音频感知哈希函数的提取matlab codes
- vs2008(mfc)通过ADO连接SQL SERVER 2008源
- 用vc++ mfc 编写的一个网页浏览器
- VC++(MFC)实现FTP功能(源代码)
- wxWidget多语言移植到MFC动态库DLL
- MFC对话框动态接收数据插入List列表并
- 单片空间后方交会,求外方位元素、
- MFC实现完整GoBang五子棋
- 吕鑫-VS2015之C.C++.MFC等完整视频链接
- VC++ MFC 的计算器的详细设计
- MFC简易音乐播放器源码
- opengl+mfc画线填充左键单击绘包围线、
- MFC可编辑列表框控件
- MFC 多线程之间通过消息传递数据
评论
共有 条评论