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

对话框与窗口

开发平台:

Visual C++

  1. // OptionsList.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "OptionsList.h"
  5. #include "Resource.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // COptionsList
  13. COptionsList::COptionsList()
  14. {
  15. m_imgList.Create(IDB_OPTIONS, 12, 2, RGB(0, 0xFF, 0));
  16. }
  17. COptionsList::~COptionsList()
  18. {
  19. }
  20. BEGIN_MESSAGE_MAP(COptionsList, CTreeCtrl)
  21. //{{AFX_MSG_MAP(COptionsList)
  22. // NOTE - the ClassWizard will add and remove mapping macros here.
  23. //}}AFX_MSG_MAP
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // COptionsList message handlers
  27. void COptionsList::PreSubclassWindow()
  28. {
  29. ModifyStyle(TVS_SHOWSELALWAYS, TVS_DISABLEDRAGDROP | TVS_NOTOOLTIPS);
  30. SetImageList(&m_imgList, TVSIL_NORMAL);
  31. CTreeCtrl::PreSubclassWindow();
  32. }