-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcsettings4.cpp
More file actions
49 lines (35 loc) · 875 Bytes
/
Copy pathcsettings4.cpp
File metadata and controls
49 lines (35 loc) · 875 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
// csettings4.cpp : 구현 파일입니다.
//
#include "stdafx.h"
#include "Cube.h"
#include "csettings4.h"
#include "afxdialogex.h"
#include "extern.h"
// csettings4 대화 상자입니다.
IMPLEMENT_DYNAMIC(csettings4, CDialogEx)
csettings4::csettings4(CWnd* pParent /*=NULL*/)
: CDialogEx(IDD_DIALOG2, pParent)
, ht(_T(""))
{
}
csettings4::~csettings4()
{
}
void csettings4::DoDataExchange(CDataExchange* pDX)
{
CDialogEx::DoDataExchange(pDX);
DDX_Text(pDX, IDC_EDIT1, ht);
}
BEGIN_MESSAGE_MAP(csettings4, CDialogEx)
ON_WM_CREATE()
END_MESSAGE_MAP()
// csettings4 메시지 처리기입니다.
int csettings4::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CDialogEx::OnCreate(lpCreateStruct) == -1)
return -1;
if (kj768 == true)ht = f2f23;
else ht = f2f24;
// TODO: 여기에 특수화된 작성 코드를 추가합니다.
return 0;
}