在 MFC 中使用 TaskDialogIndirect 时出现异常

Exception when using TaskDialogIndirect in MFC

我正在尝试以下代码,因为我想使用验证复选框功能:

const HICON hQuestionIcon = AfxGetApp()->LoadStandardIcon(IDI_QUESTION);
CString strTitle = CString();
CString strMainInstruction = CString();
CString strContent = CString();
CString strAdditional = CString();
CString strFooter = CString();
CString strExpand = CString();
CString strCollapse = CString();

ENSURE(strTitle.LoadString(AFX_IDS_APP_TITLE));
ENSURE(strMainInstruction.LoadString(IDS_STR_SUBMIT_STATS_MAIN_TEXT));
ENSURE(strContent.LoadString(IDS_STR_SUBMIT_STATS_CONTENT_TEXT));
ENSURE(strAdditional.LoadString(IDS_STR_SUBMIT_STATS_ADDITIONAL_TEXT));
ENSURE(strFooter.LoadString(IDS_STR_TASK_DIALOG_FOOTER));
ENSURE(strExpand.LoadString(IDS_STR_FIND_OUT_MORE));
ENSURE(strCollapse.LoadString(IDS_STR_COLLAPSE));

TASKDIALOGCONFIG sConfig = { 0 };
sConfig.cbSize = sizeof(TASKDIALOGCONFIG);
sConfig.hInstance = AfxGetResourceHandle();
sConfig.dwCommonButtons = TDCBF_YES_BUTTON | TDCBF_NO_BUTTON;
sConfig.hMainIcon = hQuestionIcon;
sConfig.pszMainInstruction = strMainInstruction.GetString();
sConfig.pszContent = strContent.GetString();
sConfig.pszExpandedControlText = strAdditional.GetString();
sConfig.pszFooter = strFooter.GetString();
sConfig.pszCollapsedControlText = strExpand.GetString();
sConfig.pszExpandedControlText = strCollapse.GetString();
sConfig.pszFooterIcon = TD_INFORMATION_ICON;
sConfig.pszVerificationText = _T("Stop displaying this message");
sConfig.cxWidth = CMeetingScheduleAssistantApp::DetectMessageBoxWidth();

int iButtonPressed = IDNO; // Default
BOOL bStopDisplayingMessage = FALSE;

TaskDialogIndirect(&sConfig, &iButtonPressed, NULL, &bStopDisplayingMessage);

if (bStopDisplayingMessage)
{
    CChristianLifeMinistryUtils::HidePromptToSubmitWorkbookDownloadStats();
}

return iButtonPressed;

但我遇到了一个例外:

我可以做一个常规的 CTaskDialog 来代替(没有复选框)而且没问题。

虽然我在问题中向您展示的代码还有其他问题,但解决异常的方法是设置父级:

sConfig.hwndParent = GetSafeHwnd();

它没有被讨论或提及 here. I found it out by viewing the source. The TASKDIALOGCONFIG 主题说它可以 NULL 不过。

无论如何,现在不会发生异常。


完整代码

const HICON hQuestionIcon = AfxGetApp()->LoadStandardIcon(IDI_QUESTION);
CString strTitle;
CString strMainInstruction;
CString strContent;
CString strAdditional;
CString strFooter;
CString strExpand;
CString strCollapse;

ENSURE(strTitle.LoadString(AFX_IDS_APP_TITLE));
ENSURE(strMainInstruction.LoadString(IDS_STR_SUBMIT_STATS_MAIN_TEXT));
ENSURE(strContent.LoadString(IDS_STR_SUBMIT_STATS_CONTENT_TEXT));
ENSURE(strAdditional.LoadString(IDS_STR_SUBMIT_STATS_ADDITIONAL_TEXT));
ENSURE(strFooter.LoadString(IDS_STR_TASK_DIALOG_FOOTER));
ENSURE(strExpand.LoadString(IDS_STR_FIND_OUT_MORE));
ENSURE(strCollapse.LoadString(IDS_STR_COLLAPSE));

TASKDIALOGCONFIG sConfig = { 0 };
sConfig.hwndParent = GetSafeHwnd();
sConfig.cbSize = sizeof(TASKDIALOGCONFIG);
sConfig.dwFlags = TDF_ENABLE_HYPERLINKS | TDF_USE_HICON_MAIN;
sConfig.hInstance = AfxGetResourceHandle();
sConfig.dwCommonButtons = TDCBF_YES_BUTTON | TDCBF_NO_BUTTON;
sConfig.hMainIcon = hQuestionIcon;
sConfig.pszMainInstruction = strMainInstruction.GetString();
sConfig.pszContent = strContent.GetString();
sConfig.pszExpandedInformation = strAdditional.GetString();
sConfig.pszFooter = strFooter.GetString();
sConfig.pszCollapsedControlText = strExpand.GetString();
sConfig.pszExpandedControlText = strCollapse.GetString();
sConfig.pszFooterIcon = TD_INFORMATION_ICON;
sConfig.pszVerificationText = _T("Stop displaying this message");
sConfig.cxWidth = CMeetingScheduleAssistantApp::DetectMessageBoxWidth();

int iButtonPressed = IDNO; // Default
BOOL bStopDisplayingMessage = FALSE;

HRESULT hResult = TaskDialogIndirect(&sConfig, &iButtonPressed, NULL, &bStopDisplayingMessage);
if (hResult == S_OK)
{
    if (bStopDisplayingMessage)
    {
        CChristianLifeMinistryUtils::HidePromptToSubmitWorkbookDownloadStats();
    }
}

return iButtonPressed;