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

界面编程

开发平台:

Visual C++

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