2

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

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(没有复选框),这很好。

4

1 回答 1

1

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

sConfig.hwndParent = GetSafeHwnd();

这里不讨论或提及。我通过查看源代码发现了它。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;

在此处输入图像描述

于 2021-02-23T09:55:27.993 回答