gridlistView.cpp
上传用户:zdjx198
上传日期:2007-01-02
资源大小:95k
文件大小:2k
源码类别:

ListView/ListBox

开发平台:

Visual C++

  1. // gridlistView.cpp : implementation of the CGridlistView class
  2. //
  3. #include "stdafx.h"
  4. #include "gridlist.h"
  5. #include "TestDlg.h"
  6. #include "gridlistDoc.h"
  7. #include "gridlistView.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CGridlistView
  15. IMPLEMENT_DYNCREATE(CGridlistView, CView)
  16. BEGIN_MESSAGE_MAP(CGridlistView, CView)
  17. //{{AFX_MSG_MAP(CGridlistView)
  18. ON_COMMAND(ID_TEST_GRIDLIST, OnTestGridlist)
  19. //}}AFX_MSG_MAP
  20. END_MESSAGE_MAP()
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CGridlistView construction/destruction
  23. CGridlistView::CGridlistView()
  24. {
  25. // TODO: add construction code here
  26. }
  27. CGridlistView::~CGridlistView()
  28. {
  29. }
  30. BOOL CGridlistView::PreCreateWindow(CREATESTRUCT& cs)
  31. {
  32. // TODO: Modify the Window class or styles here by modifying
  33. //  the CREATESTRUCT cs
  34. return CView::PreCreateWindow(cs);
  35. }
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CGridlistView drawing
  38. void CGridlistView::OnDraw(CDC* pDC)
  39. {
  40. CGridlistDoc* pDoc = GetDocument();
  41. ASSERT_VALID(pDoc);
  42. // TODO: add draw code for native data here
  43. }
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CGridlistView diagnostics
  46. #ifdef _DEBUG
  47. void CGridlistView::AssertValid() const
  48. {
  49. CView::AssertValid();
  50. }
  51. void CGridlistView::Dump(CDumpContext& dc) const
  52. {
  53. CView::Dump(dc);
  54. }
  55. CGridlistDoc* CGridlistView::GetDocument() // non-debug version is inline
  56. {
  57. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CGridlistDoc)));
  58. return (CGridlistDoc*)m_pDocument;
  59. }
  60. #endif //_DEBUG
  61. /////////////////////////////////////////////////////////////////////////////
  62. // CGridlistView message handlers
  63. void CGridlistView::OnTestGridlist() 
  64. {
  65. // TODO: Add your command handler code here
  66.   TestDlg dlg;
  67.   
  68.   dlg.DoModal();
  69. }