本地化 Windows 服务

发布于 2024-10-15 20:03:21 字数 334 浏览 5 评论 0原文

我想为我开发的 Windows 服务设置文化。有人可以推荐我一本好书或如何阅读吗?

到目前为止,我尝试执行以下操作 OnStart()

Dim oCultureInfo as CultureInfo = New CultureInfo("tr-TR")

System.Threading.Thread.CurrentThread.Culture = oCultureInfo
System.Threading.Thread.CurrentThread.UICulture = oCultureInfo

这样做后,我仍然看到我的文化是美国英语。

I want to Set Culture for Windows Service that I developed. Can someone recommend me a good read for or how to go about it.

So far I have I Tried to do the Following OnStart()

Dim oCultureInfo as CultureInfo = New CultureInfo("tr-TR")

System.Threading.Thread.CurrentThread.Culture = oCultureInfo
System.Threading.Thread.CurrentThread.UICulture = oCultureInfo

After doing so I still see that My culture is US English.

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

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

发布评论

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

评论(1

渡你暖光 2024-10-22 20:03:21
  1. 转到您的设置,该设置将位于相同的解决方案中。
  2. 右键单击它并选择ADD->PROJECT OUTPUT-->将出现一个窗口。
  3. 选择项目 - 您的本地化项目,然后从下面的本地化资源中选择。
  4. 只需单击“确定”即可。您将看到一个文件已添加到安装项目中。
  5. 只需编译并安装它就可以正常工作。
  1. Go to your setup which will be in the same solution.
  2. Right click on it and select ADD->PROJECT OUTPUT--> a window will appear.
  3. Select Project- your localization project then select from below localized resource.
  4. Just click ok. you will see one file is added to setup project.
  5. Just compile and install it will work fine.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文