我正在尝试使用TASKDIALOGCONFIG
结构创建一个任务对话框。我的应用程序使用Unicode。这是我的代码:
string error_text = get_error_text();
string error_code = get_error_code();
TASKDIALOGCONFIG tdc = { sizeof(TASKDIALOGCONFIG) };
tdc.dwCommonButtons = TDCBF_OK_BUTTON;
tdc.pszMainIcon = TD_ERROR_ICON;
tdc.pszWindowTitle = _T("Error");
tdc.pszContent = error_text.c_str(); /* of course this will give a
const char* instead of a wchar_t* */
tdc.pszExpandedInformation = error_code.c_str(); // here is the same thing
tdc.hwndParent = m_wndParent;
TaskDialogIndirect(&tdc, NULL, NULL, NULL);
我已经对这个问题进行了一些研究,但我还没有找到解决方案。有人能帮助我吗?
答案 0 :(得分:2)
您有两种选择:
TASKDIALOGCONFIGA
和TaskDialogIndirectA
。std::string
切换为std::wstring
。我个人会推荐后一种选择。
我还建议您不要使用tchar.h
,并停止使用_T(...)
。由于您只定位Unicode,因此您应该编写L"Error"
而不是_T("Error")
。如果要编写必须为MBCS和Unicode目标编译的代码,则使用tchar.h
才有意义。在我们需要为Win 95/98和Win NT / 2000编译时,这是一个必要的恶魔。但那些日子早已不复存在。