Start.cpp
资源名称:txpj.rar [点击查看]
上传用户:pureled
上传日期:2013-05-27
资源大小:1078k
文件大小:1k
源码类别:
GDI/图象编程
开发平台:
Visual C++
- // Start.cpp : implementation file
- //
- #include "stdafx.h"
- #include "图像拼接技术.h"
- #include "Start.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // Start dialog
- Start::Start(CWnd* pParent /*=NULL*/)
- : CDialog(Start::IDD, pParent)
- {
- //{{AFX_DATA_INIT(Start)
- m_x = 0;
- m_y = 0;
- // NOTE: the ClassWizard will add member initialization here
- //}}AFX_DATA_INIT
- }
- void Start::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(Start)
- DDX_Text(pDX, IDC_EDIT1, m_x);
- DDX_Text(pDX, IDC_EDIT2, m_y);
- DDV_MinMaxInt(pDX, m_y, 0, 2000);
- // NOTE: the ClassWizard will add DDX and DDV calls here
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(Start, CDialog)
- //{{AFX_MSG_MAP(Start)
- ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // Start message handlers
- void Start::OnAppAbout()
- {
- // TODO: Add your command handler code here
- }