twain2/hugaotwainds/IndicatorDlg.h

31 lines
1.1 KiB
C++
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
#include "MFC_UI.h"
// IndicatorDlg 对话框
class IndicatorDlg : public CDialog
{
DECLARE_DYNAMIC(IndicatorDlg)
public:
IndicatorDlg(MFC_UI *pUI,CWnd* pParent = nullptr); // 标准构造函数
virtual ~IndicatorDlg();
// 对话框数据
#ifdef AFX_DESIGN_TIME
enum { IDD = IDD_DIALOG_INDICATOR };
#endif
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedBtnstopscan();
private:
MFC_UI *m_ui;
void CheckCnacel();
public:
afx_msg void OnClose();
};