RotateAngle.cpp
资源名称:txpj.rar [点击查看]
上传用户:pureled
上传日期:2013-05-27
资源大小:1078k
文件大小:1k
源码类别:
GDI/图象编程
开发平台:
Visual C++
- // RotateAngle.cpp : implementation file
- //
- #include "stdafx.h"
- #include "图像拼接技术.h"
- #include "RotateAngle.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // RotateAngle dialog
- RotateAngle::RotateAngle(CWnd* pParent /*=NULL*/)
- : CDialog(RotateAngle::IDD, pParent)
- {
- //{{AFX_DATA_INIT(RotateAngle)
- Angle = 2;
- //}}AFX_DATA_INIT
- }
- void RotateAngle::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(RotateAngle)
- DDX_Text(pDX, IDC_EDIT9, Angle);
- DDV_MinMaxInt(pDX, Angle, 0, 90);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(RotateAngle, CDialog)
- //{{AFX_MSG_MAP(RotateAngle)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // RotateAngle message handlers