How to change culture to a DateTimepicker or calendar control in .Net

后端 未结 6 656
悲&欢浪女
悲&欢浪女 2020-12-05 14:59

How to set internationalization to a DateTimepicker or Calendar WinForm control in .Net when the desire culture is different to the one installed i

6条回答
  •  北海茫月
    2020-12-05 16:02

    System.Threading.Thread.CurrentThread.CurrentCulture = System.Globalization.CultureInfo.CreateSpecificCulture("fr");
    System.Threading.Thread.CurrentThread.CurrentUICulture = System.Threading.Thread.CurrentThread.CurrentCulture;
    

提交回复
热议问题