-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChildFrm.cpp
More file actions
57 lines (41 loc) ยท 962 Bytes
/
Copy pathChildFrm.cpp
File metadata and controls
57 lines (41 loc) ยท 962 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
54
55
56
57
๏ปฟ
// ChildFrm.cpp: CChildFrame ํด๋์ค์ ๊ตฌํ
//
#include "pch.h"
#include "framework.h"
#include "practice5.h"
#include "ChildFrm.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CChildFrame
IMPLEMENT_DYNCREATE(CChildFrame, CMDIChildWnd)
BEGIN_MESSAGE_MAP(CChildFrame, CMDIChildWnd)
END_MESSAGE_MAP()
// CChildFrame ์์ฑ/์๋ฉธ
CChildFrame::CChildFrame() noexcept
{
// TODO: ์ฌ๊ธฐ์ ๋ฉค๋ฒ ์ด๊ธฐํ ์ฝ๋๋ฅผ ์ถ๊ฐํฉ๋๋ค.
}
CChildFrame::~CChildFrame()
{
}
BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: CREATESTRUCT cs๋ฅผ ์์ ํ์ฌ ์ฌ๊ธฐ์์ Window ํด๋์ค ๋๋ ์คํ์ผ์ ์์ ํฉ๋๋ค.
if( !CMDIChildWnd::PreCreateWindow(cs) )
return FALSE;
return TRUE;
}
// CChildFrame ์ง๋จ
#ifdef _DEBUG
void CChildFrame::AssertValid() const
{
CMDIChildWnd::AssertValid();
}
void CChildFrame::Dump(CDumpContext& dc) const
{
CMDIChildWnd::Dump(dc);
}
#endif //_DEBUG
// CChildFrame ๋ฉ์์ง ์ฒ๋ฆฌ๊ธฐ