CustomDlg.h
上传用户:ywlong9188
上传日期:2022-05-31
资源大小:2656k
文件大小:1k
- // CustomDlg.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // CCustomDlg dialog
- #include "resource.h"
- class CProjView;
- class CCustomDlg : public CDialog
- {
- // Construction
- public:
-
- void PrepareView(CProjView* pView);
- CCustomDlg(CWnd* pParent = NULL); // standard constructor
- CStringList m_list;
- CProjView* m_pView;
- CDrawObjList* m_pList;
-
- // Dialog Data
- //{{AFX_DATA(CCustomDlg)
- enum { IDD = IDD_CUSTOM_DLG };
- CComboBox m_combox;
- int m_index;
- //}}AFX_DATA
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CCustomDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(CCustomDlg)
- virtual BOOL OnInitDialog();
- afx_msg void OnSelchangeCombo1();
- afx_msg void OnPaint();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };