资源简介

一个自己写的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

评论

共有 条评论