CustomDlg.h
上传用户:ywlong9188
上传日期:2022-05-31
资源大小:2656k
文件大小:1k
源码类别:

远程控制编程

开发平台:

C/C++

  1. // CustomDlg.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CCustomDlg dialog
  5. #include "resource.h"
  6. class CProjView;
  7. class CCustomDlg : public CDialog
  8. {
  9. // Construction
  10. public:
  11. void PrepareView(CProjView* pView);
  12. CCustomDlg(CWnd* pParent = NULL);   // standard constructor
  13. CStringList m_list;
  14. CProjView* m_pView;
  15. CDrawObjList* m_pList;
  16. // Dialog Data
  17. //{{AFX_DATA(CCustomDlg)
  18. enum { IDD = IDD_CUSTOM_DLG };
  19. CComboBox m_combox;
  20. int m_index;
  21. //}}AFX_DATA
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CCustomDlg)
  25. protected:
  26. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. protected:
  30. // Generated message map functions
  31. //{{AFX_MSG(CCustomDlg)
  32. virtual BOOL OnInitDialog();
  33. afx_msg void OnSelchangeCombo1();
  34. afx_msg void OnPaint();
  35. //}}AFX_MSG
  36. DECLARE_MESSAGE_MAP()
  37. };