-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLinearTransform.cpp
More file actions
55 lines (37 loc) · 963 Bytes
/
LinearTransform.cpp
File metadata and controls
55 lines (37 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// LinearTransform.cpp: 实现文件
//
#include "pch.h"
#include "CImageProcessing.h"
#include "afxdialogex.h"
#include "LinearTransform.h"
// LinearTransform 对话框
IMPLEMENT_DYNAMIC(LinearTransform, CDialogEx)
LinearTransform::LinearTransform(CWnd* pParent /*=nullptr*/)
: CDialogEx(IDD_LinearTransform, pParent)
, m_ahpla(0)
, m_beta(0)
{
}
LinearTransform::~LinearTransform()
{
}
void LinearTransform::DoDataExchange(CDataExchange* pDX)
{
CDialogEx::DoDataExchange(pDX);
DDX_Text(pDX, IDC_InputEdit1, m_ahpla);
DDX_Text(pDX, IDC_InputEdit2, m_beta);
}
BEGIN_MESSAGE_MAP(LinearTransform, CDialogEx)
ON_BN_CLICKED(IDC_BUTTON1, &LinearTransform::OnBnClickedButton1)
ON_BN_CLICKED(IDC_BUTTON6, &LinearTransform::OnBnClickedButton6)
END_MESSAGE_MAP()
// LinearTransform 消息处理程序
void LinearTransform::OnBnClickedButton1()
{
UpdateData(TRUE);
CDialogEx::OnOK();
}
void LinearTransform::OnBnClickedButton6()
{
return;
}