OrderCourse.h
上传用户:hnzycx
上传日期:2022-08-09
资源大小:12567k
文件大小:1k
- #pragma once
- #include "afxcmn.h"
- #include "afxwin.h"
- // COrderCourse dialog
- class COrderCourse : public CDialog
- {
- DECLARE_DYNAMIC(COrderCourse)
- public:
- COrderCourse(CWnd* pParent = NULL); // standard constructor
- virtual ~COrderCourse();
- // Dialog Data
- enum { IDD = IDD_DIALOG_ORDERCOURSE };
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- virtual BOOL OnInitDialog();
- static void CALLBACK OnReadOrderCourse(CWnd* pWnd,const char *buf,int len);
- DECLARE_MESSAGE_MAP()
- public:
-
- CListCtrl m_MenuList;
- CListCtrl m_OrderList;
- afx_msg void OnBnClickedOk();
- afx_msg void OnBnClickedAdd();
- afx_msg void OnBnClickedDelete();
- afx_msg void OnBnClickedSubmit();
- afx_msg void OnBnClickedCancel();
- CComboBox m_combobox;
- CEdit m_recv;
- };