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

界面编程

开发平台:

Visual C++

  1. // MyResizablePage2.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ResizablePropertySheet.h"
  5. #include "MyResizablePage2.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CMyResizablePage2 property page
  13. IMPLEMENT_DYNCREATE(CMyResizablePage2, CExtResizablePropertyPage)
  14. CMyResizablePage2::CMyResizablePage2() : CExtResizablePropertyPage(CMyResizablePage2::IDD)
  15. {
  16. //{{AFX_DATA_INIT(CMyResizablePage2)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. }
  20. CMyResizablePage2::~CMyResizablePage2()
  21. {
  22. }
  23. void CMyResizablePage2::DoDataExchange(CDataExchange* pDX)
  24. {
  25. CExtResizablePropertyPage::DoDataExchange(pDX);
  26. //{{AFX_DATA_MAP(CMyResizablePage2)
  27. DDX_Control(pDX, IDC_CHECK2, m_Check2);
  28. DDX_Control(pDX, IDC_CHECK1, m_Check1);
  29. //}}AFX_DATA_MAP
  30. }
  31. BEGIN_MESSAGE_MAP(CMyResizablePage2, CExtResizablePropertyPage)
  32. //{{AFX_MSG_MAP(CMyResizablePage2)
  33. //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CMyResizablePage2 message handlers
  37. BOOL CMyResizablePage2::OnInitDialog() 
  38. {
  39. CExtResizablePropertyPage::OnInitDialog();
  40. // TODO: Add extra initialization here
  41. AddAnchor( IDC_DATETIMEPICKER1, __RDA_LT, __RDA_RT );
  42. return TRUE;  // return TRUE unless you set the focus to a control
  43.               // EXCEPTION: OCX Property Pages should return FALSE
  44. }