如何设置日期时间选择器的语言?

发布于 2024-09-07 19:21:33 字数 82 浏览 6 评论 0原文

是否有任何属性可以设置 datetimepicker 的语言?

显示日历时,也就是说,如果我希望以西班牙语显示工作日,例如......

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...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

£噩梦荏苒 2024-09-14 19:21:33

您可以更改线程的区域性:

 System.Globalization.CultureInfo culture = new System.Globalization.CultureInfo("es-ES");
 System.Threading.Thread.CurrentThread.CurrentCulture = culture;
 System.Threading.Thread.CurrentThread.CurrentUICulture = culture;

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;
嘴硬脾气大 2024-09-14 19:21:33

您无法在单个控件(如 DateTimePicker)上更改区域性(其中包含工作日名称等),但只能在线程级别更改。

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文