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

GDI/图象编程

开发平台:

Visual C++

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