12345678910111213141516171819202122232425262728293031323334353637 |
- #pragma once
- #include "afxcmn.h"
- #include "XPButton.h"
- #include "ListCtrlCl.h"
- #include "afxwin.h"
- // CDlg_CardInput 对话框
- class CDlg_CardInput : public CDialog
- {
- DECLARE_DYNAMIC(CDlg_CardInput)
- public:
- CDlg_CardInput(CWnd* pParent = NULL); // 标准构造函数
- virtual ~CDlg_CardInput();
- // 对话框数据
- enum { IDD = IDD_DLG_CARDINPUT };
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
- DECLARE_MESSAGE_MAP()
- public:
- CListCtrlCl m_ctrlList;
- CString m_sExcelPath;
- virtual BOOL OnInitDialog();
- int InitList(void);
- afx_msg void OnBnClickedBtnDelete();
- afx_msg void OnBnClickedBtnImport();
- afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
- afx_msg BOOL OnEraseBkgnd(CDC* pDC);
- CXPButton m_Btn_Del;
- CXPButton m_Btn_Add;
- CXPButton m_Btn_Exit;
- };
|