CDlg4View.cpp
资源名称:CDlg4.rar [点击查看]
上传用户:gzjczs
上传日期:2022-03-18
资源大小:308k
文件大小:2k
源码类别:
PropertySheet
开发平台:
Visual C++
- // CDlg4View.cpp : implementation of the CCDlg4View class
- //
- #include "stdafx.h"
- #include "CDlg4.h"
- #include "CDlg4Doc.h"
- #include "CDlg4View.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- #include "NewPSheet.h"
- /////////////////////////////////////////////////////////////////////////////
- // CCDlg4View
- IMPLEMENT_DYNCREATE(CCDlg4View, CView)
- BEGIN_MESSAGE_MAP(CCDlg4View, CView)
- //{{AFX_MSG_MAP(CCDlg4View)
- ON_COMMAND(IDM_NEWPPSHEET, OnNewppsheet)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CCDlg4View construction/destruction
- CCDlg4View::CCDlg4View()
- {
- // TODO: add construction code here
- }
- CCDlg4View::~CCDlg4View()
- {
- }
- BOOL CCDlg4View::PreCreateWindow(CREATESTRUCT& cs)
- {
- // TODO: Modify the Window class or styles here by modifying
- // the CREATESTRUCT cs
- return CView::PreCreateWindow(cs);
- }
- /////////////////////////////////////////////////////////////////////////////
- // CCDlg4View drawing
- void CCDlg4View::OnDraw(CDC* pDC)
- {
- CCDlg4Doc* pDoc = GetDocument();
- ASSERT_VALID(pDoc);
- // TODO: add draw code for native data here
- }
- /////////////////////////////////////////////////////////////////////////////
- // CCDlg4View diagnostics
- #ifdef _DEBUG
- void CCDlg4View::AssertValid() const
- {
- CView::AssertValid();
- }
- void CCDlg4View::Dump(CDumpContext& dc) const
- {
- CView::Dump(dc);
- }
- CCDlg4Doc* CCDlg4View::GetDocument() // non-debug version is inline
- {
- ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CCDlg4Doc)));
- return (CCDlg4Doc*)m_pDocument;
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // CCDlg4View message handlers
- void CCDlg4View::OnNewppsheet()
- {
- // TODO: Add your command handler code here
- CNewPSheet s("属性表单");
- s.DoModal();
- }