📄 distinguish.cpp
字号:
// Distinguish.cpp : implementation file
//
#include "stdafx.h"
#include "FingerDemo.h"
#include "Distinguish.h"
#include "finger.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDistinguish
extern CFingerDemoApp theApp;
IMPLEMENT_DYNCREATE(CDistinguish, CFormView)
CDistinguish::CDistinguish()
: CFormView(CDistinguish::IDD)
{
//{{AFX_DATA_INIT(CDistinguish)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
CDistinguish::~CDistinguish()
{
}
void CDistinguish::DoDataExchange(CDataExchange* pDX)
{
CFormView::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CDistinguish)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CDistinguish, CFormView)
//{{AFX_MSG_MAP(CDistinguish)
ON_BN_CLICKED(IDC_SHIBIE, OnShibie)
ON_BN_CLICKED(IDC_INPORT_BMPFILE, OnInportBmpfile)
ON_BN_CLICKED(IDC_INPORT_CAPTURE, OnInportCapture)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDistinguish diagnostics
#ifdef _DEBUG
void CDistinguish::AssertValid() const
{
CFormView::AssertValid();
}
void CDistinguish::Dump(CDumpContext& dc) const
{
CFormView::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CDistinguish message handlers
void CDistinguish::OnShibie()
{
// TODO: Add your control notification handler code here
}
void CDistinguish::OnInportBmpfile()
{
// TODO: Add your control notification handler code here
}
void CDistinguish::OnInportCapture()
{
// TODO: Add your control notification handler code here
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -