다음을 통해 공유


코드 마법사를 사용하지 않고 컨트롤에 대한 형식이 안전한 액세스 수행

The first approach to creating type-safe access to controls uses an inline member function to cast the return type of class CWnd's GetDlgItem member function to the appropriate C++ control type, as in this example:

CButton* CMyDialog::GetMyCheckbox()
{
   return (CButton*)GetDlgItem(IDC_CHECKBOX);
}

You can then use this member function to access the control in a type-safe manner with code similar to the following:

GetMyCheckbox()->SetCheck(BST_CHECKED);

참고 항목

개념

대화 상자의 컨트롤에 대한 형식이 안전한 액세스

코드 마법사를 사용하여 컨트롤에 대한 형식이 안전한 액세스 수행