How to set internationalization to a DateTimepicker or Calendar WinForm control in .Net when the desire culture is different to the one installed i
DateTimepicker
Calendar WinForm
I think there is detour.
code
dateTimePicker.Format = DateTimePickerFormat.Custom; string[] formats = dateTimePicker.Value.GetDateTimeFormats(Application.CurrentCulture); dateTimePicker.CustomFormat = formats[0];