Inputdialog.cpp
上传用户:chinamans
上传日期:2016-04-11
资源大小:14485k
文件大小:1k
源码类别:

图形/文字识别

开发平台:

Visual C++

  1. // Inputdialog.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "pattern.h"
  5. #include "Inputdialog.h"
  6. #include "TCHAR.H"
  7. #define   _UNICODE
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // Inputdialog dialog
  15. Inputdialog::Inputdialog(CWnd* pParent /*=NULL*/)
  16. : CDialog(Inputdialog::IDD, pParent)
  17. {
  18. //{{AFX_DATA_INIT(Inputdialog)
  19. m_input2 = _T("");
  20. m_input1 = _T("");
  21. //}}AFX_DATA_INIT
  22. }
  23. void Inputdialog::DoDataExchange(CDataExchange* pDX)
  24. {
  25. CDialog::DoDataExchange(pDX);
  26. //{{AFX_DATA_MAP(Inputdialog)
  27. DDX_Text(pDX, IDC_EDIT2, m_input2);
  28. DDV_MaxChars(pDX, m_input2, 2);
  29. DDX_Text(pDX, IDC_EDIT1, m_input1);
  30. DDV_MaxChars(pDX, m_input1, 2);
  31. //}}AFX_DATA_MAP
  32. }
  33. BEGIN_MESSAGE_MAP(Inputdialog, CDialog)
  34. //{{AFX_MSG_MAP(Inputdialog)
  35. ON_BN_CLICKED(IDC_BUTTON1, Onok)
  36. ON_BN_CLICKED(IDC_BUTTON2, Oncancel)
  37. //}}AFX_MSG_MAP
  38. END_MESSAGE_MAP()
  39. /////////////////////////////////////////////////////////////////////////////
  40. // Inputdialog message handlers
  41. void Inputdialog::Onok() 
  42. {
  43. // TODO: Add your control notification handler code here
  44. OnOK();
  45. }
  46. void Inputdialog::Oncancel() 
  47. {
  48. // TODO: Add your control notification handler code here
  49. OnCancel();
  50. }