CDlg4View.cpp
上传用户:gzjczs
上传日期:2022-03-18
资源大小:308k
文件大小:2k
源码类别:

PropertySheet

开发平台:

Visual C++

  1. // CDlg4View.cpp : implementation of the CCDlg4View class
  2. //
  3. #include "stdafx.h"
  4. #include "CDlg4.h"
  5. #include "CDlg4Doc.h"
  6. #include "CDlg4View.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. #include "NewPSheet.h"
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CCDlg4View
  15. IMPLEMENT_DYNCREATE(CCDlg4View, CView)
  16. BEGIN_MESSAGE_MAP(CCDlg4View, CView)
  17. //{{AFX_MSG_MAP(CCDlg4View)
  18. ON_COMMAND(IDM_NEWPPSHEET, OnNewppsheet)
  19. //}}AFX_MSG_MAP
  20. END_MESSAGE_MAP()
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CCDlg4View construction/destruction
  23. CCDlg4View::CCDlg4View()
  24. {
  25. // TODO: add construction code here
  26. }
  27. CCDlg4View::~CCDlg4View()
  28. {
  29. }
  30. BOOL CCDlg4View::PreCreateWindow(CREATESTRUCT& cs)
  31. {
  32. // TODO: Modify the Window class or styles here by modifying
  33. //  the CREATESTRUCT cs
  34. return CView::PreCreateWindow(cs);
  35. }
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CCDlg4View drawing
  38. void CCDlg4View::OnDraw(CDC* pDC)
  39. {
  40. CCDlg4Doc* pDoc = GetDocument();
  41. ASSERT_VALID(pDoc);
  42. // TODO: add draw code for native data here
  43. }
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CCDlg4View diagnostics
  46. #ifdef _DEBUG
  47. void CCDlg4View::AssertValid() const
  48. {
  49. CView::AssertValid();
  50. }
  51. void CCDlg4View::Dump(CDumpContext& dc) const
  52. {
  53. CView::Dump(dc);
  54. }
  55. CCDlg4Doc* CCDlg4View::GetDocument() // non-debug version is inline
  56. {
  57. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CCDlg4Doc)));
  58. return (CCDlg4Doc*)m_pDocument;
  59. }
  60. #endif //_DEBUG
  61. /////////////////////////////////////////////////////////////////////////////
  62. // CCDlg4View message handlers
  63. void CCDlg4View::OnNewppsheet() 
  64. {
  65. // TODO: Add your command handler code here
  66. CNewPSheet s("属性表单");
  67. s.DoModal();
  68. }