EditCtrlView.cpp
上传用户:weimei12
上传日期:2022-08-11
资源大小:185k
文件大小:1k
- // EditCtrlView.cpp : implementation file
- //
- #include "stdafx.h"
- #include "SimpleMail.h"
- #include "EditCtrlView.h"
- // CEditCtrlView
- IMPLEMENT_DYNCREATE(CEditCtrlView, CFormView)
- CEditCtrlView::CEditCtrlView()
- : CFormView(CEditCtrlView::IDD)
- {
- }
- CEditCtrlView::~CEditCtrlView()
- {
- }
- void CEditCtrlView::DoDataExchange(CDataExchange* pDX)
- {
- CFormView::DoDataExchange(pDX);
- DDX_Control(pDX, IDC_EDIT, m_editCtrl);
- }
- BEGIN_MESSAGE_MAP(CEditCtrlView, CFormView)
- ON_WM_SIZE()
- END_MESSAGE_MAP()
- // CEditCtrlView diagnostics
- #ifdef _DEBUG
- void CEditCtrlView::AssertValid() const
- {
- CFormView::AssertValid();
- }
- #ifndef _WIN32_WCE
- void CEditCtrlView::Dump(CDumpContext& dc) const
- {
- CFormView::Dump(dc);
- }
- #endif
- #endif //_DEBUG
- // CEditCtrlView message handlers
- void CEditCtrlView::OnSize(UINT nType, int cx, int cy)
- {
- CFormView::OnSize(nType, cx, cy);
- // TODO: Add your message handler code here
- CFormView::ShowScrollBar(SB_VERT,FALSE);
- CFormView::ShowScrollBar(SB_HORZ,FALSE);
- if (GetSafeHwnd())
- {
- if (m_editCtrl.GetSafeHwnd())
- {
- CRect rect(0,0,cx,cy);
- m_editCtrl.MoveWindow(&rect);
- }
- }
- }
- void CEditCtrlView::OnInitialUpdate()
- {
- CFormView::OnInitialUpdate();
- // TODO: Add your specialized code here and/or call the base class
- //SetDlgCtrlID(VIEW_EDIT);
- }
- void CEditCtrlView::DisplayText(LPCTSTR strText)
- {
- m_editCtrl.SetWindowText(strText);
- }