应用 tr() 函数

发布于 2024-12-03 10:29:05 字数 217 浏览 3 评论 0原文

您好,我无法将 tr() 应用于传递给函数字符串。 请问你能帮忙吗?

MainWin::SetMenuBarButton (PdCount,"File", LEFT);

如何将 tr() 函数应用于字符串 File

Hi i'm not able to apply tr() to strings, which are passing to a function.
Please can you help?

MainWin::SetMenuBarButton (PdCount,"File", LEFT);

How to apply tr() function to string File ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

那请放手 2024-12-10 10:29:05

这取决于该电话在哪里。如果它位于任何 QObject 之外,则需要在其前面加上 QObject 前缀:

MainWin::SetMenuBarButton (PdCount,QObject::tr("File"), LEFT);

Edit 以在需要 const 的函数中使用它字符*:

MainWin::SetMenuBarButton (PdCount,QObject::tr("File").toAscii(), LEFT);

It depends on where that call is. If it is outside any QObject, you need to prefix it by QObject:

MainWin::SetMenuBarButton (PdCount,QObject::tr("File"), LEFT);

Edit to use it in a function that expect a const char*:

MainWin::SetMenuBarButton (PdCount,QObject::tr("File").toAscii(), LEFT);
冬天旳寂寞 2024-12-10 10:29:05

它只是一个接受字符串的函数。一个简单的谷歌搜索可能会有所帮助。

tr("文件")

its just a function that takes the string. a simple google search could help.

tr("FILE")

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文