Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Note
The Microsoft Foundation Classes (MFC) library continues to be supported. However, we're no longer adding features or updating the documentation.
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);
See also
Type-Safe Access to Controls in a Dialog Box
Type-Safe Access to Controls With Code Wizards