Bonjour à tous,

J'aurais souhaité savoir si il existait un moyen d'initialiser la culture Info de manière globale dans toute mon Application windows forms.

Thread.CurrentThread.CurrentCulture = new CultureInfo("fr-FR");
// Sets the UI culture to French (France)
Thread.CurrentThread.CurrentUICulture = new CultureInfo("fr-FR");

J'ai trouvé ces deux méthodes sur msdn mais lorsqu'un nouveau thread est créé la culture info de mon système d'exploitation est prise en compte et non celle que j'ai définie.

Même chose pour Application.CurrentCultre;