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

界面编程

开发平台:

Visual C++

  1. // MyResizablePage3.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ResizablePropertySheet.h"
  5. #include "MyResizablePage3.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CMyResizablePage3 property page
  13. IMPLEMENT_DYNCREATE(CMyResizablePage3, CExtResizablePropertyPage)
  14. CMyResizablePage3::CMyResizablePage3() : CExtResizablePropertyPage(CMyResizablePage3::IDD)
  15. {
  16. //{{AFX_DATA_INIT(CMyResizablePage3)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. }
  20. CMyResizablePage3::~CMyResizablePage3()
  21. {
  22. }
  23. void CMyResizablePage3::DoDataExchange(CDataExchange* pDX)
  24. {
  25. CExtResizablePropertyPage::DoDataExchange(pDX);
  26. //{{AFX_DATA_MAP(CMyResizablePage3)
  27. DDX_Control(pDX, IDC_MONTHCALENDAR1, m_wndMonthCalCtrl);
  28. //}}AFX_DATA_MAP
  29. }
  30. BEGIN_MESSAGE_MAP(CMyResizablePage3, CExtResizablePropertyPage)
  31. //{{AFX_MSG_MAP(CMyResizablePage3)
  32. //}}AFX_MSG_MAP
  33. END_MESSAGE_MAP()
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CMyResizablePage3 message handlers
  36. BOOL CMyResizablePage3::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. }
  44. BOOL CMyResizablePage3::OnSetActive() 
  45. {
  46. BOOL bRetVal = CExtResizablePropertyPage::OnSetActive();
  47. if( bRetVal )
  48. {
  49. CExtResizablePropertySheet * pSheet =
  50. STATIC_DOWNCAST(
  51. CExtResizablePropertySheet,
  52. GetParent()
  53. );
  54. if( pSheet->IsWizard() )
  55. pSheet->SetWizardButtons( PSWIZB_BACK|PSWIZB_FINISH );
  56. } // if( bRetVal )
  57. return bRetVal;
  58. }
  59. BOOL CMyResizablePage3::OnKillActive() 
  60. {
  61. BOOL bRetVal = CExtResizablePropertyPage::OnKillActive();
  62. if( bRetVal )
  63. {
  64. CExtResizablePropertySheet * pSheet =
  65. STATIC_DOWNCAST(
  66. CExtResizablePropertySheet,
  67. GetParent()
  68. );
  69. if( pSheet->IsWizard() )
  70. pSheet->SetWizardButtons( PSWIZB_BACK|PSWIZB_NEXT );
  71. } // if( bRetVal )
  72. return bRetVal;
  73. }