twain3.0/huagao/CAboutDlg.h

30 lines
591 B
C++

#pragma once
#include <string>
// CAboutDlg 对话框
class CAboutDlg : public CDialogEx
{
DECLARE_DYNAMIC(CAboutDlg)
public:
CAboutDlg(std::string hardwareversion,std::string serialnum, CWnd* pParent = nullptr); // 标准构造函数
virtual ~CAboutDlg();
// 对话框数据
#ifdef AFX_DESIGN_TIME
enum { IDD = IDD_ABOUT };
#endif
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
DECLARE_MESSAGE_MAP()
public:
virtual BOOL OnInitDialog();
afx_msg void OnBnClickedOk();
private:
std::string m_hardwareversion;
std::string m_serialnum;
};