Special.h
上传用户:hnzycx
上传日期:2022-08-09
资源大小:12567k
文件大小:1k
开发平台:

Visual C++

  1. #pragma once
  2. #include "afxwin.h"
  3. #include "afxcmn.h"
  4. // CSpecial dialog
  5. class CSpecial : public CDialog
  6. {
  7. DECLARE_DYNAMIC(CSpecial)
  8. protected:
  9. public:
  10. CSpecial(CWnd* pParent = NULL);   // standard constructor
  11. virtual ~CSpecial();
  12. // Dialog Data
  13. enum { IDD = IDD_DIALOG_SPECIAL };
  14. protected:
  15. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  16. virtual BOOL OnInitDialog();
  17. static void CALLBACK OnReadSpecial(CWnd* pWnd,const char *buf,int len);
  18. DECLARE_MESSAGE_MAP()
  19. public:
  20. afx_msg void OnEnChangeEdit1();
  21. afx_msg void OnBnClickedOk();
  22. CListCtrl m_SpecialList;
  23. afx_msg void OnEnChangeEditshow();
  24. afx_msg void OnBnClickedCancel();
  25. afx_msg void OnBnClickedButton1();
  26. };