You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
907 B
30 lines
907 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Configuration;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Windows;
|
|
using System.Globalization;
|
|
using System.Threading;
|
|
|
|
namespace Samples
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for App.xaml
|
|
/// </summary>
|
|
public partial class App : Application
|
|
{
|
|
protected override void OnStartup(StartupEventArgs e)
|
|
{
|
|
// Put the following code before InitializeComponent()
|
|
// Sets the culture to French (France)
|
|
Thread.CurrentThread.CurrentCulture = new CultureInfo("da-DK");
|
|
// Sets the UI culture to French (France)
|
|
Thread.CurrentThread.CurrentUICulture = new CultureInfo("da-DK");
|
|
|
|
base.OnStartup(e);
|
|
Bootstrapper bootstrapper = new Bootstrapper();
|
|
bootstrapper.Run();
|
|
}
|
|
}
|
|
}
|
|
|