CharView.cpp
上传用户:cdscwht
上传日期:2022-07-27
资源大小:264k
文件大小:1k
源码类别:

图形/文字识别

开发平台:

Visual Basic

  1. // CharView.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "dip.h"
  5. #include "CharView.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CCharView
  13. IMPLEMENT_DYNCREATE(CCharView, CFormView)
  14. CCharView::CCharView()
  15. : CFormView(CCharView::IDD)
  16. {
  17. //{{AFX_DATA_INIT(CCharView)
  18. // NOTE: the ClassWizard will add member initialization here
  19. //}}AFX_DATA_INIT
  20. }
  21. CCharView::~CCharView()
  22. {
  23. }
  24. void CCharView::DoDataExchange(CDataExchange* pDX)
  25. {
  26. CFormView::DoDataExchange(pDX);
  27. //{{AFX_DATA_MAP(CCharView)
  28. DDX_Control(pDX, IDC_EDIT_RESULT, m_result);
  29. //}}AFX_DATA_MAP
  30. }
  31. BEGIN_MESSAGE_MAP(CCharView, CFormView)
  32. //{{AFX_MSG_MAP(CCharView)
  33. //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CCharView diagnostics
  37. #ifdef _DEBUG
  38. void CCharView::AssertValid() const
  39. {
  40. CFormView::AssertValid();
  41. }
  42. void CCharView::Dump(CDumpContext& dc) const
  43. {
  44. CFormView::Dump(dc);
  45. }
  46. #endif //_DEBUG
  47. /////////////////////////////////////////////////////////////////////////////
  48. // CCharView message handlers
  49. void CCharView::OnOK() 
  50. {
  51. // TODO: Add your control notification handler code here
  52. }
  53. void CCharView::OnCancel() 
  54. {
  55. // TODO: Add your control notification handler code here
  56. }