MyDialogBar.h
上传用户:lxjxxg
上传日期:2007-01-02
资源大小:42k
文件大小:1k
源码类别:

工具条

开发平台:

Visual C++

  1. // MyDialogBar.h: interface for the MyDialogBar class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MYDIALOGBAR_H__D614B259_C5EC_11D2_B8C5_B41E04C10000__INCLUDED_)
  5. #define AFX_MYDIALOGBAR_H__D614B259_C5EC_11D2_B8C5_B41E04C10000__INCLUDED_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. #include "Label.h"
  10. #include "DateTimeCtrl.h"
  11. #include "DialogBarEx.h"
  12.  
  13. #endif // !defined(AFX_MYDIALOGBAR_H__D614B259_C5EC_11D2_B8C5_B41E04C10000__INCLUDED_)
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CMyDialogBar window
  16. class CMyDialogBar : public  CDialogBarEx 
  17. {
  18. // Construction
  19. public:
  20. CMyDialogBar();
  21. // Attributes
  22. public:
  23. CDateTimeCtrl m_DateTimeCtrl ;
  24. CLabel m_Label ;
  25. // Operations
  26. public:
  27. // Overrides
  28. // ClassWizard generated virtual function overrides
  29. //{{AFX_VIRTUAL(CMyDialogBar)
  30. protected:
  31. virtual void DoDataExchange(CDataExchange* pDX);
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. public:
  35. virtual void OnInitDialogBar();
  36. virtual ~CMyDialogBar();
  37. // Generated message map functions
  38. protected:
  39. //{{AFX_MSG(CMyDialogBar)
  40. // NOTE - the ClassWizard will add and remove member functions here.
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. /////////////////////////////////////////////////////////////////////////////