Weizhi3.cpp
资源名称:txpj.rar [点击查看]
上传用户:pureled
上传日期:2013-05-27
资源大小:1078k
文件大小:1k
源码类别:
GDI/图象编程
开发平台:
Visual C++
- // Weizhi3.cpp : implementation file
- //
- #include "stdafx.h"
- #include "图像拼接技术.h"
- #include "Weizhi3.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // Weizhi3 dialog
- Weizhi3::Weizhi3(CWnd* pParent /*=NULL*/)
- : CDialog(Weizhi3::IDD, pParent)
- {
- //{{AFX_DATA_INIT(Weizhi3)
- match3_x = 0;
- match3_y = 0;
- //}}AFX_DATA_INIT
- }
- void Weizhi3::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(Weizhi3)
- DDX_Text(pDX, IDC_SUANFA3_X, match3_x);
- DDV_MinMaxInt(pDX, match3_x, 0, 400);
- DDX_Text(pDX, IDC_SUANFA3_Y, match3_y);
- DDV_MinMaxInt(pDX, match3_y, 0, 400);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(Weizhi3, CDialog)
- //{{AFX_MSG_MAP(Weizhi3)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // Weizhi3 message handlers
- BOOL Weizhi3::OnInitDialog()
- {
- CDialog::OnInitDialog();
- // TODO: Add extra initialization here
- UpdateData(FALSE);
- return TRUE; // return TRUE unless you set the focus to a control
- // EXCEPTION: OCX Property Pages should return FALSE
- }
- void Weizhi3::OnOK()
- {
- // TODO: Add extra validation here
- UpdateData(FALSE);
- CDialog::OnOK();
- }