Partager via


CTaskDialog::SetVerificationCheckboxText

Définit le texte affiché à droite de la case à cocher de vérification.

void SetVerificationCheckboxText(
   CString& strVerificationText
);

Paramètres

  • [in] strVerificationText
    Le texte que cette méthode affiche en regard de la case à cocher de vérification.

Notes

Cette méthode lève une exception avec la macro d' GARANTISSEZ (MFC) si cette instance de CTaskDialog, classe est déjà affichée.

Exemple

// 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
}

Configuration requise

en-tête : afxtaskdialog.h

Voir aussi

Référence

CTaskDialog, classe

Graphique de la hiérarchie

CTaskDialog::SetVerificationCheckbox