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

界面编程

开发平台:

Visual C++

  1. // summpage.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "drawcli.h"
  5. #include "summpage.h"
  6. #ifdef _DEBUG
  7. #undef THIS_FILE
  8. static char THIS_FILE[] = __FILE__;
  9. #endif
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CSummPage property page
  12. IMPLEMENT_DYNCREATE(CSummPage, CPropertyPage)
  13. CSummPage::CSummPage() : CPropertyPage(CSummPage::IDD)
  14. {
  15. //{{AFX_DATA_INIT(CSummPage)
  16. m_strAuthor = _T("");
  17. m_strKeywd = _T("");
  18. m_strSubj = _T("");
  19. m_strCmt = _T("");
  20. m_strTempl = _T("");
  21. m_strTitle = _T("");
  22. m_strAppname = _T("");
  23. //}}AFX_DATA_INIT
  24. }
  25. CSummPage::~CSummPage()
  26. {
  27. }
  28. void CSummPage::DoDataExchange(CDataExchange* pDX)
  29. {
  30. CPropertyPage::DoDataExchange(pDX);
  31. //{{AFX_DATA_MAP(CSummPage)
  32. DDX_Text(pDX, IDC_AUTHOR, m_strAuthor);
  33. DDX_Text(pDX, IDC_KEYWORDS, m_strKeywd);
  34. DDX_Text(pDX, IDC_SUBJECT, m_strSubj);
  35. DDX_Text(pDX, IDC_COMMENTS, m_strCmt);
  36. DDX_Text(pDX, IDC_TEMPLATE, m_strTempl);
  37. DDX_Text(pDX, IDC_TITLE, m_strTitle);
  38. DDX_Text(pDX, IDC_APPNAME, m_strAppname);
  39. //}}AFX_DATA_MAP
  40. }
  41. BEGIN_MESSAGE_MAP(CSummPage, CPropertyPage)
  42. //{{AFX_MSG_MAP(CSummPage)
  43. // NOTE: the ClassWizard will add message map macros here
  44. //}}AFX_MSG_MAP
  45. END_MESSAGE_MAP()
  46. /////////////////////////////////////////////////////////////////////////////
  47. // CSummPage message handlers