多线程wpf应用程序设置线程cultureinfo

发布于 2024-10-01 16:33:18 字数 191 浏览 4 评论 0原文

我正在开发一个多线程 wpf 应用程序。为了执行全球化,我尝试将当前线程(主线程)区域性设置为 app.xaml.cs 中的不变文化,以便应用程序域中的所有 C# 对象都适用于区域性不变信息。但是,当许多线程开始使用调用的工作线程时,就会出现问题,这些线程的区域性默认为我不想要的操作系统区域性设置。帮助我找到创建的工作线程从主线程继承 CultureInfo 的方法

I'm working on a multithreaded wpf application. To perform globalization i tried to set the current thread's(main thread) culture to invariant culturee in app.xaml.cs, So that all C# objects in app domain works on culture invariant info. But the problem arises when many threads comes to usage the worker threads invoked, those thread's culture are defaulted to OS Culture settings which i don't want. Help me in finding out a way where the worker threads created inherits the CultureInfo from main thread

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

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

发布评论

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

评论(2

爱的故事 2024-10-08 16:33:18

我认为没有办法将文化分配给整个 AppDomain。您最好的选择可能是使用辅助类来实例化线程。

class ThreadHelper
{
    public static Thread getThread(ThreadStart start, int maxStackSize)
    {

        Thread t = new Thread(start,maxStackSize);
        t.CurrentCulture = new System.Globalization.CultureInfo(3081);
        return t;
    }
}

I don't think there is a way to assign the culture to the entire AppDomain. Your best option might be to use a helper class to instantiate the threads.

class ThreadHelper
{
    public static Thread getThread(ThreadStart start, int maxStackSize)
    {

        Thread t = new Thread(start,maxStackSize);
        t.CurrentCulture = new System.Globalization.CultureInfo(3081);
        return t;
    }
}
客…行舟 2024-10-08 16:33:18

执行此操作:

if (Thread.CurrentThread.CurrentCulture.Name != "en-US")
{
    var culture = CultureInfo.CreateSpecificCulture("en-US");
    CultureInfo.DefaultThreadCurrentCulture = culture;
    CultureInfo.DefaultThreadCurrentUICulture = culture;
}

如您所见,这将为后台线程和 UI 线程设置默认区域性。如果您将其放入 app.xaml 中,那么您应该已准备就绪。

Do this:

if (Thread.CurrentThread.CurrentCulture.Name != "en-US")
{
    var culture = CultureInfo.CreateSpecificCulture("en-US");
    CultureInfo.DefaultThreadCurrentCulture = culture;
    CultureInfo.DefaultThreadCurrentUICulture = culture;
}

As you can see it this sets your default culture for both background and UI threads. If you drop this in your app.xaml then you should be all set.

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