.NET Framework 4.5 Multi-Threaded Globalization: Listing 2

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

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

namespace UpdatedCultureInfoDemo
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();

            UserPreferredCulture.DataContext = CultureInfo.CurrentUICulture;

            CultureInfo french = new CultureInfo("fr-FR");
            CultureInfo.DefaultThreadCurrentCulture = french;
            CultureInfo.DefaultThreadCurrentUICulture = french;

            Thread test = new Thread(new ThreadStart(NewThreadUITest));
            test.Start();

            CultureTask();

        }

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

        private void CultureTask()
        {
            Task.Factory.StartNew(() =>
            {
                 Dispatcher.Invoke(() => TaskUICulture.DataContext = Thread.CurrentThread.CurrentUICulture);
            });
        }
    }
}

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

Subscribe on YouTube