TabSamplePage.cpp
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:1k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // TabSamplePage.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "PropertySheet.h"
  5. #include "TabSamplePage.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CTabSamplePage property page
  13. IMPLEMENT_DYNCREATE(CTabSamplePage, CXTPPropertyPage)
  14. CTabSamplePage::CTabSamplePage() : CXTPPropertyPage(CTabSamplePage::IDD)
  15. {
  16. //{{AFX_DATA_INIT(CTabSamplePage)
  17. m_nValue = 2;
  18. //}}AFX_DATA_INIT
  19. }
  20. CTabSamplePage::~CTabSamplePage()
  21. {
  22. }
  23. void CTabSamplePage::DoDataExchange(CDataExchange* pDX)
  24. {
  25. CXTPPropertyPage::DoDataExchange(pDX);
  26. //{{AFX_DATA_MAP(CTabSamplePage)
  27. DDX_Text(pDX, IDC_EDIT_VALUE, m_nValue);
  28. DDV_MinMaxInt(pDX, m_nValue, 1, 10);
  29. //}}AFX_DATA_MAP
  30. }
  31. BEGIN_MESSAGE_MAP(CTabSamplePage, CXTPPropertyPage)
  32. //{{AFX_MSG_MAP(CTabSamplePage)
  33. ON_EN_CHANGE(IDC_EDIT_VALUE, OnChangeEditValue)
  34. ON_BN_CLICKED(IDC_CHECK1, OnCheck)
  35. ON_BN_CLICKED(IDC_CHECK2, OnCheck)
  36. //}}AFX_MSG_MAP
  37. END_MESSAGE_MAP()
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CTabSamplePage message handlers
  40. void CTabSamplePage::OnChangeEditValue() 
  41. {
  42. SetModified();
  43. }
  44. void CTabSamplePage::OnCheck() 
  45. {
  46. SetModified();
  47. }