Dlg_CardInput.h 806 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #pragma once
  2. #include "afxcmn.h"
  3. #include "XPButton.h"
  4. #include "ListCtrlCl.h"
  5. #include "afxwin.h"
  6. // CDlg_CardInput 对话框
  7. class CDlg_CardInput : public CDialog
  8. {
  9. DECLARE_DYNAMIC(CDlg_CardInput)
  10. public:
  11. CDlg_CardInput(CWnd* pParent = NULL); // 标准构造函数
  12. virtual ~CDlg_CardInput();
  13. // 对话框数据
  14. enum { IDD = IDD_DLG_CARDINPUT };
  15. protected:
  16. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
  17. DECLARE_MESSAGE_MAP()
  18. public:
  19. CListCtrlCl m_ctrlList;
  20. CString m_sExcelPath;
  21. virtual BOOL OnInitDialog();
  22. int InitList(void);
  23. afx_msg void OnBnClickedBtnDelete();
  24. afx_msg void OnBnClickedBtnImport();
  25. afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
  26. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  27. CXPButton m_Btn_Del;
  28. CXPButton m_Btn_Add;
  29. CXPButton m_Btn_Exit;
  30. };