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

Visual C++

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