TLabelComboBox.cpp
上传用户:zhout2004
上传日期:2007-01-02
资源大小:218k
文件大小:1k
源码类别:

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. /************************************
  2.   REVISION LOG ENTRY
  3.   Revision By: Mihai Filimon
  4.   Revised on 8/23/98 19:33:54
  5.   Comments: TLabelComboBox.cpp: implementation of the CTLabelComboBox class.
  6.  ************************************/
  7. #include "stdafx.h"
  8. #include "TLabelComboBox.h"
  9. #ifdef _DEBUG
  10. #undef THIS_FILE
  11. static char THIS_FILE[]=__FILE__;
  12. #define new DEBUG_NEW
  13. #endif
  14. //////////////////////////////////////////////////////////////////////
  15. // Construction/Destruction
  16. //////////////////////////////////////////////////////////////////////
  17. // Function name : CTLabelComboBox::CTLabelComboBox
  18. // Description     : Default constructor
  19. // Return type : 
  20. CTLabelComboBox::CTLabelComboBox()
  21. {
  22. }
  23. // Function name : CTLabelComboBox::~CTLabelComboBox
  24. // Description     : virtual destructor
  25. // Return type : 
  26. CTLabelComboBox::~CTLabelComboBox()
  27. {
  28. }
  29. // Function name : CTLabelComboBox::GetEditControl
  30. // Description     : Get edit from combo
  31. // Return type : CWnd* 
  32. CWnd* CTLabelComboBox::GetEditControl()
  33. {
  34. CWnd* pWnd = GetWindowControl();
  35. switch (pWnd->GetStyle() & 0x3)
  36. {
  37. case CBS_SIMPLE:
  38. case CBS_DROPDOWN:
  39. return pWnd->GetDlgItem(1001);
  40. break;
  41. case CBS_DROPDOWNLIST:
  42. return pWnd;
  43. break;
  44. }
  45. return NULL;
  46. }