PrintFrame.cpp
上传用户:jzscgs158
上传日期:2022-05-25
资源大小:8709k
文件大小:1k
源码类别:

百货/超市行业

开发平台:

Visual C++

  1. // PrintFrame.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "PrintFrame.h"
  5. #ifdef _DEBUG
  6. #define new DEBUG_NEW
  7. #undef THIS_FILE
  8. static char THIS_FILE[] = __FILE__;
  9. #endif
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CPrintFrame
  12. IMPLEMENT_DYNCREATE(CPrintFrame, CFrameWnd)
  13. CPrintFrame::CPrintFrame()
  14. {
  15. m_pCallerDlg = NULL;
  16. m_pWnd = AfxGetApp()->m_pMainWnd;
  17. AfxGetApp()->m_pMainWnd = this;
  18. }
  19. CPrintFrame::~CPrintFrame()
  20. {
  21. }
  22. BEGIN_MESSAGE_MAP(CPrintFrame, CFrameWnd)
  23. //{{AFX_MSG_MAP(CPrintFrame)
  24. ON_WM_DESTROY()
  25. //}}AFX_MSG_MAP
  26. END_MESSAGE_MAP()
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CPrintFrame message handlers
  29. BOOL CPrintFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext) 
  30. {
  31. // TODO: Add your specialized code here and/or call the base class
  32. m_pView = new CPrintView();
  33. m_pView->Create(NULL,NULL,WS_CHILD|WS_VISIBLE,CRect(0,0,0,0),this,AFX_IDW_PANE_FIRST,pContext);
  34. return TRUE;
  35. }
  36. void CPrintFrame::OnDestroy() 
  37. {
  38. if(m_pView!=NULL)
  39. {
  40. m_pView->DestroyWindow();
  41. }
  42. CFrameWnd::OnDestroy();
  43. AfxGetApp()->m_pMainWnd = m_pWnd;
  44. }