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

对话框与窗口

开发平台:

Visual C++

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