www.pudn.com > hongmodingweiyuanchengxu.rar > DlgResult.cpp


// DlgResult.cpp : implementation file 
// 
/* 
	本程序是练习时顺手写的程序,简陋至极,欢迎高手指点。 
 
	“打开”一幅虹膜样本就可以进行操作。 
 
				作者:	吴春雷 
				QQ:		26885133 
				群:		29153069 
				EMail:	wuchunlei@163.com 
*/ 
#include "stdafx.h" 
#include "虹膜定位.h" 
#include "DlgResult.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CDlgResult dialog 
 
 
CDlgResult::CDlgResult(CWnd* pParent /*=NULL*/) 
	: CDialog(CDlgResult::IDD, pParent) 
{ 
	//{{AFX_DATA_INIT(CDlgResult) 
		// NOTE: the ClassWizard will add member initialization here 
	//}}AFX_DATA_INIT 
} 
 
 
void CDlgResult::DoDataExchange(CDataExchange* pDX) 
{ 
	CDialog::DoDataExchange(pDX); 
	//{{AFX_DATA_MAP(CDlgResult) 
		// NOTE: the ClassWizard will add DDX and DDV calls here 
	//}}AFX_DATA_MAP 
} 
 
 
BEGIN_MESSAGE_MAP(CDlgResult, CDialog) 
	//{{AFX_MSG_MAP(CDlgResult) 
	ON_WM_CLOSE() 
	//}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// CDlgResult message handlers 
 
void CDlgResult::OnClose()  
{ 
	// TODO: Add your message handler code here and/or call default 
	 
	CDialog::OnClose(); 
} 
 
BOOL CDlgResult::OnInitDialog()  
{ 
	CDialog::OnInitDialog(); 
	//显示图片 
	return TRUE;   
} 
 
void CDlgResult::OnOK()  
{ 
	// TODO: Add extra validation here 
	 
	CDialog::OnOK(); 
}