EditBox.cpp
上传用户:qiye66671
上传日期:2009-12-10
资源大小:182k
文件大小:1k
源码类别:

绘图程序

开发平台:

C/C++

  1. // EditBox.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "eastdraw.h"
  5. #include "EditBox.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CEditBox dialog
  13. CEditBox::CEditBox(CWnd* pParent /*=NULL*/)
  14. : CDialog(CEditBox::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CEditBox)
  17. //}}AFX_DATA_INIT
  18.    m_RichEditCtrl.Create(
  19.    WS_CHILD|WS_VISIBLE|WS_BORDER|ES_MULTILINE,
  20.    CRect(10,10,100,200),this, 1);
  21. }
  22. void CEditBox::DoDataExchange(CDataExchange* pDX)
  23. {
  24. CDialog::DoDataExchange(pDX);
  25. //{{AFX_DATA_MAP(CEditBox)
  26. DDX_Control(pDX, IDC_RICHEDIT2, m_RichEditCtrl);
  27. //}}AFX_DATA_MAP
  28. }
  29. BEGIN_MESSAGE_MAP(CEditBox, CDialog)
  30. //{{AFX_MSG_MAP(CEditBox)
  31. // NOTE: the ClassWizard will add message map macros here
  32. //}}AFX_MSG_MAP
  33. END_MESSAGE_MAP()
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CEditBox message handlers