Right.cpp
上传用户:szcysw
上传日期:2013-03-11
资源大小:6752k
文件大小:2k
源码类别:

界面编程

开发平台:

Visual C++

  1. // Right.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "MyExplorer.h"
  5. #include "Right.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CRight
  13. IMPLEMENT_DYNCREATE(CRight, CView)
  14. CRight::CRight()
  15. {
  16. }
  17. CRight::~CRight()
  18. {
  19. }
  20. BEGIN_MESSAGE_MAP(CRight, CView)
  21. //{{AFX_MSG_MAP(CRight)
  22. ON_WM_CREATE()
  23. ON_WM_SIZE()
  24. //}}AFX_MSG_MAP
  25. END_MESSAGE_MAP()
  26. /////////////////////////////////////////////////////////////////////////////
  27. // CRight drawing
  28. void CRight::OnDraw(CDC* pDC)
  29. {
  30. CDocument* pDoc = GetDocument();
  31. // TODO: add draw code here
  32. }
  33. /////////////////////////////////////////////////////////////////////////////
  34. // CRight diagnostics
  35. #ifdef _DEBUG
  36. void CRight::AssertValid() const
  37. {
  38. CView::AssertValid();
  39. }
  40. void CRight::Dump(CDumpContext& dc) const
  41. {
  42. CView::Dump(dc);
  43. }
  44. #endif //_DEBUG
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CRight message handlers
  47. int CRight::OnCreate(LPCREATESTRUCT lpCreateStruct) 
  48. {
  49. if (CView::OnCreate(lpCreateStruct) == -1)
  50. return -1;
  51. //建立m_ShellList
  52. if (!m_ShellList.Create(WS_VISIBLE | WS_CHILD | WS_CLIPCHILDREN 
  53. | LVS_REPORT | LVS_SHAREIMAGELISTS | LVS_EDITLABELS,
  54. CRect(0,0,0,0), this, IDC_LISTCTRL))
  55. {
  56. TRACE0("Failed to create list control.n");
  57. return -1;
  58. }
  59. m_ShellList.BuildDefaultColumns();
  60. m_ShellList.SubclassHeader(1);
  61. return 0;
  62. }
  63. void CRight::OnSize(UINT nType, int cx, int cy) 
  64. {
  65. CView::OnSize(nType, cx, cy);
  66. m_ShellList.MoveWindow(0,0,cx,cy);
  67. }