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

GDI/图象编程

开发平台:

Visual C++

  1. // Start.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "图像拼接技术.h"
  5. #include "Start.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // Start dialog
  13. Start::Start(CWnd* pParent /*=NULL*/)
  14. : CDialog(Start::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(Start)
  17. m_x = 0;
  18. m_y = 0;
  19. // NOTE: the ClassWizard will add member initialization here
  20. //}}AFX_DATA_INIT
  21. }
  22. void Start::DoDataExchange(CDataExchange* pDX)
  23. {
  24. CDialog::DoDataExchange(pDX);
  25. //{{AFX_DATA_MAP(Start)
  26. DDX_Text(pDX, IDC_EDIT1, m_x);
  27. DDX_Text(pDX, IDC_EDIT2, m_y);
  28. DDV_MinMaxInt(pDX, m_y, 0, 2000);
  29. // NOTE: the ClassWizard will add DDX and DDV calls here
  30. //}}AFX_DATA_MAP
  31. }
  32. BEGIN_MESSAGE_MAP(Start, CDialog)
  33. //{{AFX_MSG_MAP(Start)
  34. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  35. //}}AFX_MSG_MAP
  36. END_MESSAGE_MAP()
  37. /////////////////////////////////////////////////////////////////////////////
  38. // Start message handlers
  39. void Start::OnAppAbout() 
  40. {
  41. // TODO: Add your command handler code here
  42. }