.NET Framework 4.5 Multi-Threaded Globalization: Listing 1

The .NET Framework 4 multi-threading culture setting sample.

private void CultureTask(CultureInfo culture)
{
    Task.Factory.StartNew((c) =>
        {
          Dispatcher.Invoke(() => TaskUICulture.DataContext = c);
        }, culture);
    
}

using System.Windows;
using System.Threading;
using System.Globalization;
using System.Threading.Tasks;
using System;
using System.Windows.Threading;

namespace VSMCultureInfoDemo
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
            UserPreferredCulture.DataContext = CultureInfo.CurrentUICulture;

            // Change culture of the current thread
            CultureInfo french = new CultureInfo("fr-Fr");
            Thread.CurrentThread.CurrentCulture = french;
            Thread.CurrentThread.CurrentUICulture = french;

            Thread cultureParameterized = new Thread(new ParameterizedThreadStart(SetThreadCulture));
            cultureParameterized.Start(french);

            Thread cultureAfter = new Thread(new ThreadStart(CultureAfterTest));
            cultureAfter.CurrentCulture = Thread.CurrentThread.CurrentUICulture;
            cultureAfter.CurrentUICulture = Thread.CurrentThread.CurrentUICulture;
            cultureAfter.Start();

            CultureTask(Thread.CurrentThread.CurrentUICulture);
        }

        private void CultureAfterTest()
        {
            Dispatcher.Invoke(() => ThreadUIPropCulture.DataContext = Thread.CurrentThread.CurrentUICulture);
        }

        private void SetThreadCulture(object culture)
        {
            CultureInfo cultureInfo = culture as CultureInfo;
            Thread.CurrentThread.CurrentCulture = cultureInfo;
            Thread.CurrentThread.CurrentUICulture = cultureInfo;

            Dispatcher.Invoke(() => ThreadUIParamCulture.DataContext = Thread.CurrentThread.CurrentUICulture);
        }

        private void CultureTask(CultureInfo culture)
        {
            Task.Factory.StartNew((c) =>
                {
                  Dispatcher.Invoke(() => TaskUICulture.DataContext = c);
                }, culture);
            
        }
    }
}

About the Author

Eric Vogel is a Senior Software Developer for Red Cedar Solutions Group in Okemos, Michigan. He is the president of the Greater Lansing User Group for .NET. Eric enjoys learning about software architecture and craftsmanship, and is always looking for ways to create more robust and testable applications. Contact him at [email protected].

comments powered by Disqus

Featured

  • Full-Stack with a Side of Copilot: Building and Deploying an App the AI-Accelerated Way

    In this Q&A, developer and VSLive! speaker Esteban Garcia explains how GitHub Copilot can accelerate the full software development lifecycle -- from architecture and code to tests, CI/CD, and Azure deployment -- and how to use it as a repeatable engineering workflow rather than just a faster autocomplete tool.

  • VS Code 1.127 Further Integrates Advanced Browser-AI Tech

    Microsoft's July 1 Visual Studio Code update continues a recent push to make the editor's integrated browser a more capable development surface -- and a more useful tool for AI agents.

  • Support Vector Regression with SGD Training Using C#

    Support vector regression can predict numeric values effectively, and this article shows how to implement and train a kernel SVR model in C# using stochastic sub-gradient descent.

  • New GitHub Switch Limits Repo Issue Creation to Collaborators Only

    After publicly touting pull request limits as a way to cut maintainer noise, GitHub is taking the same idea further with a new setting that lets repository admins restrict issue creation to collaborators only.

Subscribe on YouTube