EditCtrlView.h
上传用户:weimei12
上传日期:2022-08-11
资源大小:185k
文件大小:1k
源码类别:

Email客户端

开发平台:

Visual C++

  1. /********************************************************************
  2. created: 2008:12:17   14:18
  3. author: 李欣
  4. filename: c:MyProjectSimpleMailSimpleMailEditCtrlView.h
  5. classname:  CEditCtrlView
  6. purpose: the class for previewing the mail 
  7. *********************************************************************/
  8. #pragma once
  9. #include "afxwin.h"
  10. // CEditCtrlView form view
  11. class CEditCtrlView : public CFormView
  12. {
  13. DECLARE_DYNCREATE(CEditCtrlView)
  14. public:
  15. CEditCtrlView();
  16. protected:
  17. virtual ~CEditCtrlView();
  18. public:
  19. enum { IDD = IDD_EDITVIEW };
  20. #ifdef _DEBUG
  21. virtual void AssertValid() const;
  22. #ifndef _WIN32_WCE
  23. virtual void Dump(CDumpContext& dc) const;
  24. #endif
  25. #endif
  26. protected:
  27. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  28. DECLARE_MESSAGE_MAP()
  29. public:
  30. afx_msg void OnSize(UINT nType, int cx, int cy);
  31. virtual void OnInitialUpdate();
  32. void DisplayText(LPCTSTR strText); 
  33. CEdit m_editCtrl;
  34. };