Weizhi3.cpp
上传用户:pureled
上传日期:2013-05-27
资源大小:1078k
文件大小:1k
源码类别:

GDI/图象编程

开发平台:

Visual C++

  1. // Weizhi3.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "图像拼接技术.h"
  5. #include "Weizhi3.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // Weizhi3 dialog
  13. Weizhi3::Weizhi3(CWnd* pParent /*=NULL*/)
  14. : CDialog(Weizhi3::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(Weizhi3)
  17. match3_x = 0;
  18. match3_y = 0;
  19. //}}AFX_DATA_INIT
  20. }
  21. void Weizhi3::DoDataExchange(CDataExchange* pDX)
  22. {
  23. CDialog::DoDataExchange(pDX);
  24. //{{AFX_DATA_MAP(Weizhi3)
  25. DDX_Text(pDX, IDC_SUANFA3_X, match3_x);
  26. DDV_MinMaxInt(pDX, match3_x, 0, 400);
  27. DDX_Text(pDX, IDC_SUANFA3_Y, match3_y);
  28. DDV_MinMaxInt(pDX, match3_y, 0, 400);
  29. //}}AFX_DATA_MAP
  30. }
  31. BEGIN_MESSAGE_MAP(Weizhi3, CDialog)
  32. //{{AFX_MSG_MAP(Weizhi3)
  33. //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35. /////////////////////////////////////////////////////////////////////////////
  36. // Weizhi3 message handlers
  37. BOOL Weizhi3::OnInitDialog() 
  38. {
  39. CDialog::OnInitDialog();
  40. // TODO: Add extra initialization here
  41. UpdateData(FALSE);
  42. return TRUE;  // return TRUE unless you set the focus to a control
  43.               // EXCEPTION: OCX Property Pages should return FALSE
  44. }
  45. void Weizhi3::OnOK() 
  46. {
  47. // TODO: Add extra validation here
  48. UpdateData(FALSE);
  49. CDialog::OnOK();
  50. }