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

对话框与窗口

开发平台:

Visual C++

  1. // TabListPage.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "PropertySheet.h"
  5. #include "TabListPage.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CTabListPage property page
  13. IMPLEMENT_DYNCREATE(CTabListPage, CXTPPropertyPage)
  14. CTabListPage::CTabListPage() : CXTPPropertyPage(CTabListPage::IDD)
  15. {
  16. //{{AFX_DATA_INIT(CTabListPage)
  17. m_bFlatPage = FALSE;
  18. m_nStyle = 2;
  19. //}}AFX_DATA_INIT
  20. }
  21. CTabListPage::~CTabListPage()
  22. {
  23. }
  24. void CTabListPage::DoDataExchange(CDataExchange* pDX)
  25. {
  26. CXTPPropertyPage::DoDataExchange(pDX);
  27. //{{AFX_DATA_MAP(CTabListPage)
  28. DDX_Check(pDX, IDC_CHECK_FLAT, m_bFlatPage);
  29. DDX_CBIndex(pDX, IDC_COMBO_STYLE, m_nStyle);
  30. //}}AFX_DATA_MAP
  31. }
  32. BEGIN_MESSAGE_MAP(CTabListPage, CXTPPropertyPage)
  33. //{{AFX_MSG_MAP(CTabListPage)
  34. ON_BN_CLICKED(IDC_CHECK_FLAT, OnCheckFlat)
  35. ON_CBN_SELCHANGE(IDC_COMBO_STYLE, OnSelchangeComboStyle)
  36. //}}AFX_MSG_MAP
  37. END_MESSAGE_MAP()
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CTabListPage message handlers
  40. void CTabListPage::OnCheckFlat() 
  41. {
  42. UpdateData();
  43. m_pSheet->SetPageBorderStyle(m_bFlatPage ? xtpPageBorderBottomLine : xtpPageBorderFrame);
  44. m_pSheet->RedrawWindow(0, 0, RDW_INVALIDATE | RDW_ALLCHILDREN|RDW_ERASE);
  45. }
  46. void CTabListPage::OnSelchangeComboStyle() 
  47. {
  48. UpdateData();
  49. CXTPPropertyPageNavigator* pNavigator = m_pSheet->GetNavigator();
  50. ((CXTPPropertyPageListNavigator*)pNavigator)->SetListStyle((XTListBoxStyle)m_nStyle);
  51. }