PropView.h
上传用户:peony_8
上传日期:2022-05-18
资源大小:1955k
文件大小:2k
源码类别:

菜单

开发平台:

Visual C++

  1. // PropView.h : interface of the CPropView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_PROPVIEW_H__9ED5D35E_6CF5_4197_8B0B_10C4101E35EF__INCLUDED_)
  5. #define AFX_PROPVIEW_H__9ED5D35E_6CF5_4197_8B0B_10C4101E35EF__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CPropView : public CView
  10. {
  11. protected: // create from serialization only
  12. CPropView();
  13. DECLARE_DYNCREATE(CPropView)
  14. // Attributes
  15. public:
  16. CPropDoc* GetDocument();
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CPropView)
  22. public:
  23. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  24. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  25. protected:
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. public:
  29. virtual ~CPropView();
  30. #ifdef _DEBUG
  31. virtual void AssertValid() const;
  32. virtual void Dump(CDumpContext& dc) const;
  33. #endif
  34. protected:
  35. // Generated message map functions
  36. protected:
  37. //{{AFX_MSG(CPropView)
  38. afx_msg void OnPropertysheet();
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. private:
  42. int m_iOccupation;
  43. CString m_strWorkAddr;
  44. BOOL m_bLike[4];
  45. CString m_strSalary;
  46. };
  47. #ifndef _DEBUG  // debug version in PropView.cpp
  48. inline CPropDoc* CPropView::GetDocument()
  49.    { return (CPropDoc*)m_pDocument; }
  50. #endif
  51. /////////////////////////////////////////////////////////////////////////////
  52. //{{AFX_INSERT_LOCATION}}
  53. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  54. #endif // !defined(AFX_PROPVIEW_H__9ED5D35E_6CF5_4197_8B0B_10C4101E35EF__INCLUDED_)