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