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

界面编程

开发平台:

Visual C++

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