旧 MFC 项目上的 UTF-8 转换为较新的 MFC
因此项目设计为多字节。将整个项目重新编码为 Unicode 是一项艰巨的工作:(
那么我如何在我的对话框上使用 UTF-8 ?我有这个:
So project is Multi-byte by design. Recode full project to Unicode is to big work :(
So how can I use UTF-8 on my dialogs ? I've got this :
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试将 MultiByteToWideChar 与UTF8 代码页。但是,因为我不确定你是如何通过的???文本到对话框,这可能不是解决方案。同样,如果您尝试将 UTF8 字符串传递到 MultiByte 期望的位置,您可以尝试 WideCharToMultiByte 带有 UTF8 代码页。
You can try to use MultiByteToWideChar with UTF8 code page. But, since I'm not sure how you pass ??? texts to the dialog, this might not be a solution. Similarly, if you try to pass UTF8 string to where MultiByte expected, you can try WideCharToMultiByte with UTF8 code page.