gpt4 book ai didi

c++ - 如何使用消息框而不是 wcout

转载 作者:行者123 更新时间:2023-11-28 06:27:37 26 4
gpt4 key购买 nike

如何在消息框中显示文件名和一些字符串?

我使用这段代码:

wcout<<L"The File Path: [ "<<filename<<" ] Is Wrong";

但现在我想使用消息框而不是 wcout

MessageBoxW(NULL,L"The File Path: [ "+filename+L" ] Is Wrong" , (LPCWSTR)L"File Content", MB_OK);

最佳答案

您可以使用 std::wostringstream格式化消息框的文本:

std::wostringstream msg;
msg << L"The File Path: [" << filename << L"] Is Wrong";

并将msg.str().c_str()传递给消息框

MessageBox(NULL,msg.str().c_str(),L"File open error",MB_ICONERROR | MB_OK);

关于c++ - 如何使用消息框而不是 wcout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28241151/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com