RTScrollEdit.h
上传用户:qhonly
上传日期:2013-06-10
资源大小:487k
文件大小:1k
源码类别:

界面编程

开发平台:

Visual C++

  1. #pragma once
  2. #include "RTEdit.h"
  3. #include "RTScrollControlContainer.h"
  4. // CRTScrollEdit
  5. class CRTScrollEdit : public CRTEdit
  6. {
  7. DECLARE_DYNAMIC(CRTScrollEdit)
  8. public:
  9. CRTScrollControlContainer m_Container;
  10. CRTScrollEdit();
  11. virtual ~CRTScrollEdit();
  12. protected:
  13. DECLARE_MESSAGE_MAP()
  14. public:
  15. afx_msg void OnPaint();
  16. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  17. protected:
  18. virtual void PreSubclassWindow();
  19. public:
  20. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  21. void SetScroll(void);
  22. };