12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- //#include "SortListCtrl3.h"
- #pragma once
- #include "afxcmn.h"
- #include "afxwin.h"
- // CDlgCloundResult 对话框
- class CDlgCloundResult : public CDialog
- {
- DECLARE_DYNAMIC(CDlgCloundResult)
- public:
- CDlgCloundResult(CWnd* pParent = NULL); // 标准构造函数
- virtual ~CDlgCloundResult();
- // 对话框数据
- enum { IDD = DLG_CLOUNDRESULT };
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
- DECLARE_MESSAGE_MAP()
- public:
- INT m_nCloundType;
- INT m_nAdd;
- INT m_nSelItem;
- CSortListCtrl2 *m_pList;
- CSortListCtrl3 m_SortList;
- CArray<CStringArray, CStringArray> m_AryCloundInfo;
- CArray<CStringArray, CStringArray> m_AryCloundResult;
- virtual BOOL OnInitDialog();
- void InitListCtrl();
- void GetCloundResult();
- void UpdateDataSortList(IN vector<lyfzLibrary::STOrdJson>& vtOrdJson);
- void UpdateDataSortList2(IN vector<lyfzLibrary::STXYJson>& vtXYJson);
- void FillUpList(IN CString& strQuery);
- afx_msg void OnBnClickedDownresult();
- afx_msg void OnBnClickedSynresult();
- afx_msg void OnBnClickedExportxls();
- afx_msg void OnBnClickedQuery();
- CComboBox m_ctrlCombox;
- afx_msg void OnBnClickedClean();
- protected:
- virtual void OnOK();
- virtual void OnCancel();
- };
|