How to change culture to a DateTimepicker or calendar control in .Net
Based on previous solution, I think the better is:
dateTimePicker.Format = DateTimePickerFormat.Custom;
dateTimePicker.CustomFormat = Application.CurrentCulture.DateTimeFormat.ShortDatePattern;
It doesn't seem to be possible to change the culture. See this KB article.