-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSET_PIXEL_DLG.cpp
More file actions
46 lines (33 loc) · 808 Bytes
/
Copy pathSET_PIXEL_DLG.cpp
File metadata and controls
46 lines (33 loc) · 808 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
// SET_PIXEL_DLG.cpp: 实现文件
//
#include "imageProcessing.h"
#include "afxdialogex.h"
#include "SET_PIXEL_DLG.h"
// SET_PIXEL_DLG 对话框
IMPLEMENT_DYNAMIC(SET_PIXEL_DLG, CDialogEx)
SET_PIXEL_DLG::SET_PIXEL_DLG(CWnd* pParent /*=nullptr*/)
: CDialogEx(IDD_DIALOG1, pParent)
, set_X(0)
, set_Y(0)
, set_Res(0)
, set_R(0)
, set_G(0)
, set_B(0)
{
}
SET_PIXEL_DLG::~SET_PIXEL_DLG()
{
}
void SET_PIXEL_DLG::DoDataExchange(CDataExchange* pDX)
{
CDialogEx::DoDataExchange(pDX);
DDX_Text(pDX, IDC_EDIT1, set_X);
DDX_Text(pDX, IDC_EDIT2, set_Y);
DDX_Text(pDX, IDC_EDIT3, set_Res);
DDX_Text(pDX, IDC_EDIT4, set_R);
DDX_Text(pDX, IDC_EDIT5, set_G);
DDX_Text(pDX, IDC_EDIT6, set_B);
}
BEGIN_MESSAGE_MAP(SET_PIXEL_DLG, CDialogEx)
END_MESSAGE_MAP()
// SET_PIXEL_DLG 消息处理程序