MyPropertyPage.cpp
上传用户:raowubin
上传日期:2007-01-02
资源大小:19k
文件大小:1k
源码类别:

PropertySheet

开发平台:

Visual C++

  1. // MyPropertyPage.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ps_in_ps.h"
  5. #include "MyPropertyPage.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CMyPropertyPage property page
  13. IMPLEMENT_DYNCREATE(CMyPropertyPage, CPropertyPage)
  14. CMyPropertyPage::CMyPropertyPage() : CPropertyPage(CMyPropertyPage::IDD)
  15. {
  16. //{{AFX_DATA_INIT(CMyPropertyPage)
  17. m_nTestInt = 0;
  18. //}}AFX_DATA_INIT
  19. }
  20. CMyPropertyPage::~CMyPropertyPage()
  21. {
  22. }
  23. void CMyPropertyPage::DoDataExchange(CDataExchange* pDX)
  24. {
  25. CPropertyPage::DoDataExchange(pDX);
  26. //{{AFX_DATA_MAP(CMyPropertyPage)
  27. DDX_Text(pDX, IDC_EDIT1, m_nTestInt);
  28. DDV_MinMaxInt(pDX, m_nTestInt, 0, 99);
  29. //}}AFX_DATA_MAP
  30. }
  31. BEGIN_MESSAGE_MAP(CMyPropertyPage, CPropertyPage)
  32. //{{AFX_MSG_MAP(CMyPropertyPage)
  33. // NOTE: the ClassWizard will add message map macros here
  34. //}}AFX_MSG_MAP
  35. END_MESSAGE_MAP()
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CMyPropertyPage message handlers