How do I set the language for datetimepicker?

14,611

Solution 1

You can't change the culture, which contains weekdays names among other things, on a single control like the DateTimePicker, but at thread level.

Solution 2

You can change culture for thread:

 System.Globalization.CultureInfo culture = new System.Globalization.CultureInfo("es-ES");
 System.Threading.Thread.CurrentThread.CurrentCulture = culture;
 System.Threading.Thread.CurrentThread.CurrentUICulture = culture;
Share:
14,611
Jack Johnstone
Author by

Jack Johnstone

Updated on June 25, 2022

Comments

  • Jack Johnstone
    Jack Johnstone almost 2 years

    Is there any property to set the language for datetimepicker?

    When displaying the calendar, that is - if I want the week days to be displayed in Spanish, for example...