다음을 통해 공유


CTaskDialog::SetVerificationCheckbox

확인 확인란의 선택된 상태를 설정합니다.

void SetVerificationCheckbox(
   BOOL bChecked
);

매개 변수

  • [in] bChecked
    TRUE확인을 할 때 확인란이 선택 된 CTaskDialog 표시 됩니다. FALSE확인 하려면 확인 상자 시기 선택은 CTaskDialog 표시 됩니다.

예제

// TODO: Replace the strings below with the appropriate message, 
// main instruction, and dialog title
CString message("This is an important message to the user.");
CString mainInstruction("Important!\nPlease read!");
CString title("Alert Dialog");

CTaskDialog taskDialog(message, mainInstruction, title, 
    TDCBF_YES_BUTTON | TDCBF_NO_BUTTON | TDCBF_CANCEL_BUTTON );

// Add the verification checkbox and set the default state.
taskDialog.SetVerificationCheckboxText(L"Remember your selection.");
taskDialog.SetVerificationCheckbox(false);

taskDialog.DoModal();

if (taskDialog.GetVerificationCheckboxState())
{
    // TODO: Write settings of the task dialog to the registry
}

요구 사항

헤더: afxtaskdialog.h

참고 항목

참조

CTaskDialog 클래스

계층 구조 차트

CTaskDialog::SetVerificationCheckboxText