EditCtrlView.h
上传用户:weimei12
上传日期:2022-08-11
资源大小:185k
文件大小:1k
- /********************************************************************
- created: 2008:12:17 14:18
- author: 李欣
- filename: c:MyProjectSimpleMailSimpleMailEditCtrlView.h
- classname: CEditCtrlView
- purpose: the class for previewing the mail
- *********************************************************************/
- #pragma once
- #include "afxwin.h"
- // CEditCtrlView form view
- class CEditCtrlView : public CFormView
- {
- DECLARE_DYNCREATE(CEditCtrlView)
- public:
- CEditCtrlView();
- protected:
- virtual ~CEditCtrlView();
- public:
- enum { IDD = IDD_EDITVIEW };
- #ifdef _DEBUG
- virtual void AssertValid() const;
- #ifndef _WIN32_WCE
- virtual void Dump(CDumpContext& dc) const;
- #endif
- #endif
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- DECLARE_MESSAGE_MAP()
- public:
- afx_msg void OnSize(UINT nType, int cx, int cy);
- virtual void OnInitialUpdate();
- void DisplayText(LPCTSTR strText);
- CEdit m_editCtrl;
- };