.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

  • OData Finally Ditches Old .NET Framework

    "The most disruptive change we are making in this release is dropping support for .NET Framework."

  • .NET MAUI, ASP.NET Core Polished in First Release Candidate for .NET 9

    Microsoft shipped the first release candidate for .NET 9, which is nearing feature completeness and production readiness in advance of its November debut.

  • Microsoft's Stalled UWP Project Supports .NET 9 to Help WinUI 3 Migration

    The company urges devs to switch to Windows App SDK and WinUI 3 because UWP is no longer under active development.

  • Get Up and Running with Modern Angular

    The Angular web-dev framework might seem an odd choice for a Microsoft-centric developer to consider, seeing as it's championed by arch-rival Google, but a closer look reveals many advantages.

Subscribe on YouTube