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

GDI/图象编程

开发平台:

Visual C++

  1. // Weizhi.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "图像拼接技术.h"
  5. #include "Weizhi.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // Weizhi dialog
  13. Weizhi::Weizhi(CWnd* pParent /*=NULL*/)
  14. : CDialog(Weizhi::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(Weizhi)
  17. match_x = 0;
  18. match_y = 0;
  19. //}}AFX_DATA_INIT
  20. }
  21. void Weizhi::DoDataExchange(CDataExchange* pDX)
  22. {
  23. CDialog::DoDataExchange(pDX);
  24. //{{AFX_DATA_MAP(Weizhi)
  25. DDX_Text(pDX, IDC_SUANFA1_X, match_x);
  26. DDV_MinMaxInt(pDX, match_x, 0, 400);
  27. DDX_Text(pDX, IDC_SUANFA1_Y, match_y);
  28. DDV_MinMaxInt(pDX, match_y, 0, 400);
  29. //}}AFX_DATA_MAP
  30. }
  31. BEGIN_MESSAGE_MAP(Weizhi, CDialog)
  32. //{{AFX_MSG_MAP(Weizhi)
  33. //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35. /////////////////////////////////////////////////////////////////////////////
  36. // Weizhi message handlers
  37. BOOL Weizhi::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 Weizhi::OnOK() 
  46. {
  47. // TODO: Add extra validation here
  48. UpdateData(TRUE);
  49. CDialog::OnOK();
  50. }