STATPAGE.CPP
上传用户:sesekoo
上传日期:2020-07-18
资源大小:21543k
文件大小:2k
源码类别:

界面编程

开发平台:

Visual C++

  1. // statpage.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "drawcli.h"
  5. #include "statpage.h"
  6. #ifdef _DEBUG
  7. #undef THIS_FILE
  8. static char THIS_FILE[] = __FILE__;
  9. #endif
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CStatPage property page
  12. IMPLEMENT_DYNCREATE(CStatPage, CPropertyPage)
  13. CStatPage::CStatPage() : CPropertyPage(CStatPage::IDD)
  14. {
  15. //{{AFX_DATA_INIT(CStatPage)
  16. m_strCreateDate = _T("");
  17. m_strEditTime = _T("");
  18. m_strLastPrint = _T("");
  19. m_strLastSave = _T("");
  20. m_strNumChars = _T("");
  21. m_strNumPages = _T("");
  22. m_strNumWords = _T("");
  23. m_strRevNum = _T("");
  24. m_strSavedBy = _T("");
  25. m_strSecurity = _T("");
  26. //}}AFX_DATA_INIT
  27. }
  28. CStatPage::~CStatPage()
  29. {
  30. }
  31. void CStatPage::DoDataExchange(CDataExchange* pDX)
  32. {
  33. CPropertyPage::DoDataExchange(pDX);
  34. //{{AFX_DATA_MAP(CStatPage)
  35. DDX_Text(pDX, IDC_CREATEDATE, m_strCreateDate);
  36. DDX_Text(pDX, IDC_EDITTIME, m_strEditTime);
  37. DDX_Text(pDX, IDC_LASTPRINT, m_strLastPrint);
  38. DDX_Text(pDX, IDC_LASTSAVE, m_strLastSave);
  39. DDX_Text(pDX, IDC_NUMCHARS, m_strNumChars);
  40. DDX_Text(pDX, IDC_NUMPAGES, m_strNumPages);
  41. DDX_Text(pDX, IDC_NUMWORDS, m_strNumWords);
  42. DDX_Text(pDX, IDC_REVNUM, m_strRevNum);
  43. DDX_Text(pDX, IDC_SAVEDBY, m_strSavedBy);
  44. DDX_Text(pDX, IDC_SECURITY, m_strSecurity);
  45. //}}AFX_DATA_MAP
  46. }
  47. BEGIN_MESSAGE_MAP(CStatPage, CPropertyPage)
  48. //{{AFX_MSG_MAP(CStatPage)
  49. // NOTE: the ClassWizard will add message map macros here
  50. //}}AFX_MSG_MAP
  51. END_MESSAGE_MAP()
  52. /////////////////////////////////////////////////////////////////////////////
  53. // CStatPage message handlers