FlowPage.cpp
上传用户:hjw22cn
上传日期:2007-01-11
资源大小:192k
文件大小:2k
源码类别:

Tab控件

开发平台:

Visual C++

  1. // FlowPage.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "formview.h"
  5. #include "FlowPage.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CFlowPage property page
  13. IMPLEMENT_DYNCREATE(CFlowPage, CPageBase)
  14. CFlowPage::CFlowPage() : CPageBase(CFlowPage::IDD)
  15. {
  16. //{{AFX_DATA_INIT(CFlowPage)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. }
  20. CFlowPage::~CFlowPage()
  21. {
  22. }
  23. void CFlowPage::DoDataExchange(CDataExchange* pDX)
  24. {
  25. CPageBase::DoDataExchange(pDX);
  26. //{{AFX_DATA_MAP(CFlowPage)
  27. DDX_Control(pDX, IDC_LIST1, m_ctrlList);
  28. //}}AFX_DATA_MAP
  29. }
  30. BEGIN_MESSAGE_MAP(CFlowPage, CPageBase)
  31. //{{AFX_MSG_MAP(CFlowPage)
  32. ON_WM_SIZE()
  33. //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CFlowPage message handlers
  37. BOOL CFlowPage::OnInitDialog() 
  38. {
  39. CPageBase::OnInitDialog();
  40. // TODO: Add extra initialization here
  41. m_ctrlList.InsertColumn(0, "Application",   LVCFMT_CENTER, 200);
  42. m_ctrlList.InsertColumn(1, "Started",       LVCFMT_CENTER, 120);
  43. m_ctrlList.InsertColumn(2, "Msgs",          LVCFMT_CENTER, 60 );
  44. m_ctrlList.InsertColumn(3, "Last Recieved", LVCFMT_CENTER, 120);
  45. AddAnchor(IDC_LIST1, TOP_LEFT, BOTTOM_RIGHT);
  46. return TRUE;  // return TRUE unless you set the focus to a control
  47.               // EXCEPTION: OCX Property Pages should return FALSE
  48. }
  49. void CFlowPage::OnSize(UINT nType, int cx, int cy) 
  50. {
  51. CPageBase::OnSize(nType, cx, cy);
  52. }