Weizhi.cpp
资源名称:txpj.rar [点击查看]
上传用户:pureled
上传日期:2013-05-27
资源大小:1078k
文件大小:1k
源码类别:
GDI/图象编程
开发平台:
Visual C++
- // Weizhi.cpp : implementation file
- //
- #include "stdafx.h"
- #include "图像拼接技术.h"
- #include "Weizhi.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // Weizhi dialog
- Weizhi::Weizhi(CWnd* pParent /*=NULL*/)
- : CDialog(Weizhi::IDD, pParent)
- {
- //{{AFX_DATA_INIT(Weizhi)
- match_x = 0;
- match_y = 0;
- //}}AFX_DATA_INIT
- }
- void Weizhi::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(Weizhi)
- DDX_Text(pDX, IDC_SUANFA1_X, match_x);
- DDV_MinMaxInt(pDX, match_x, 0, 400);
- DDX_Text(pDX, IDC_SUANFA1_Y, match_y);
- DDV_MinMaxInt(pDX, match_y, 0, 400);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(Weizhi, CDialog)
- //{{AFX_MSG_MAP(Weizhi)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // Weizhi message handlers
- BOOL Weizhi::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 Weizhi::OnOK()
- {
- // TODO: Add extra validation here
- UpdateData(TRUE);
- CDialog::OnOK();
- }