본문 바로가기

Windows/MFC

Class 사용법

CxStatic
m_test.Create(this, NULL, NULL, WS_VISIBLE|WS_CHILD, CRect(0, 0, 300, 50), 107);

CxCheckBox
m_test2.Create(NULL, NULL, WS_VISIBLE|WS_CHILD, CRect(0, 0, 100, 20), this, 108, NULL);
m_test3.Create(NULL, NULL, WS_VISIBLE|WS_CHILD, CRect(0, 20, 100, 40), this, 109, NULL);

m_test2.SetWindowText(L"한글되니");
m_test2.SetCheck(TRUE);

m_test3.SetWindowText(L"일어되니");
m_test3.SetCheck(FALSE);

'Windows > MFC' 카테고리의 다른 글

AttriWndBase  (0) 2013.10.02
캡션바 없애기 caption  (0) 2013.10.02
[SQLCE강좌] 4. PDA에 SQLCE설치  (0) 2013.10.02
[SQLCE강좌] 2. MR? RDA?  (0) 2013.10.02
WM_IME_CHAR  (0) 2013.10.02