mifaredlg.h

来自「APIDemo源码」· C头文件 代码 · 共 66 行

H
66
字号
#if !defined(AFX_MIFAREDLG_H__77A24AF6_9ED5_4EAA_891C_1B69107C4FE8__INCLUDED_)
#define AFX_MIFAREDLG_H__77A24AF6_9ED5_4EAA_891C_1B69107C4FE8__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// MifareDlg.h : header file
//
#include "MyPropetySheet.h"

/////////////////////////////////////////////////////////////////////////////
// CMifareDlg dialog

class CMifareDlg : public CPropertyPage
{
	DECLARE_DYNCREATE(CMifareDlg)

// Construction
public:
	CMifareDlg();
	~CMifareDlg();

// Dialog Data
	//{{AFX_DATA(CMifareDlg)
	enum { IDD = IDD_MIFARE_ONE };
	CComboBox	m_cmbSector;
	CComboBox	m_cmbKey;
	CComboBox	m_cmbBlock;
	CButton		m_btnWrite;
	CButton		m_btnRequest;
	CButton		m_btnRead;
	CButton		m_btnAuth;
	CString		m_sCSN;
	CString		m_sData;
	CString		m_sKey;
	//}}AFX_DATA


// Overrides
	// ClassWizard generate virtual function overrides
	//{{AFX_VIRTUAL(CMifareDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	// Generated message map functions
	//{{AFX_MSG(CMifareDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnBtnRequest();
	afx_msg void OnBtnAuh();
	afx_msg void OnBtnRead();
	afx_msg void OnBtnWrite();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
public:
	CMyPropetySheet		*m_pParent;

};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_MIFAREDLG_H__77A24AF6_9ED5_4EAA_891C_1B69107C4FE8__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?