12345678910111213141516171819202122232425262728293031323334 |
- #pragma once
- #include "afxwin.h"
- #include "resource.h"
- #include "BtnST.h"
- // CDlg_ParamFind 对话框
- class CDlg_ParamFind : public CDialog
- {
- DECLARE_DYNAMIC(CDlg_ParamFind)
- public:
- CDlg_ParamFind(CWnd* pParent = NULL); // 标准构造函数
- virtual ~CDlg_ParamFind();
-
- // 对话框数据
- enum { IDD = IDD_DLG_PARAMFIND };
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
- DECLARE_MESSAGE_MAP()
- public:
- virtual BOOL OnInitDialog();
- CComboBox m_Comb_FindType;
- int m_nComb_FindType;
- CString m_sEdit_Data;
- afx_msg void OnBnClickedOk();
- afx_msg void OnBnClickedCancel();
- afx_msg void OnBnClickedBtnFind();
- CButtonST m_btnCancel,m_btnFind;
- bool m_bChk_Dim;
- };
|