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

对话框与窗口

开发平台:

Visual C++

  1. // TabLongPage.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "propertysheet.h"
  5. #include "TabLongPage.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CTabLongPage property page
  13. IMPLEMENT_DYNCREATE(CTabLongPage, CXTPPropertyPage)
  14. CTabLongPage::CTabLongPage() : CXTPPropertyPage(CTabLongPage::IDD)
  15. {
  16. //{{AFX_DATA_INIT(CTabLongPage)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. }
  20. CTabLongPage::~CTabLongPage()
  21. {
  22. }
  23. void CTabLongPage::DoDataExchange(CDataExchange* pDX)
  24. {
  25. CXTPPropertyPage::DoDataExchange(pDX);
  26. //{{AFX_DATA_MAP(CTabLongPage)
  27. // NOTE: the ClassWizard will add DDX and DDV calls here
  28. //}}AFX_DATA_MAP
  29. }
  30. BEGIN_MESSAGE_MAP(CTabLongPage, CXTPPropertyPage)
  31. //{{AFX_MSG_MAP(CTabLongPage)
  32. //}}AFX_MSG_MAP
  33. END_MESSAGE_MAP()
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CTabLongPage message handlers
  36. BOOL CTabLongPage::OnInitDialog() 
  37. {
  38. CXTPPropertyPage::OnInitDialog();
  39. ModifyStyle(0, WS_CLIPCHILDREN | WS_VSCROLL);
  40. for (int i = 0; i < 5; i++)
  41. {
  42. m_captions[i].SubclassDlgItem(IDC_STATIC_SUBCAPTION1 + i, this);
  43. SetResize(IDC_STATIC_SUBCAPTION1 + i, SZ_TOP_LEFT, SZ_TOP_RIGHT);
  44. }
  45. return TRUE;  // return TRUE unless you set the focus to a control
  46.               // EXCEPTION: OCX Property Pages should return FALSE
  47. }