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

Email客户端

开发平台:

Visual C++

  1. // ExpandEditCtrl.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "SimpleMail.h"
  5. #include "ExpandEditCtrl.h"
  6. // CExpandEditCtrl
  7. IMPLEMENT_DYNAMIC(CExpandEditCtrl, CRichEditCtrl)
  8. CExpandEditCtrl::CExpandEditCtrl()
  9. {
  10. }
  11. CExpandEditCtrl::~CExpandEditCtrl()
  12. {
  13. }
  14. BEGIN_MESSAGE_MAP(CExpandEditCtrl, CRichEditCtrl)
  15. ON_WM_KEYDOWN()
  16. END_MESSAGE_MAP()
  17. // CExpandEditCtrl message handlers
  18. void CExpandEditCtrl::OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags)
  19. {
  20. // TODO: Add your message handler code here and/or call default
  21. if (46 == nChar)
  22. {//DEL
  23. long nStartChar, nEndChar;
  24. GetSel(nStartChar, nEndChar);
  25. GetParent()->PostMessage(WM_DEL_FILE, nStartChar, 0);
  26. }
  27. CRichEditCtrl::OnKeyDown(nChar, nRepCnt, nFlags);
  28. }