根据这篇文章我知道,那个 DateTimePicker 控件不反映CurrentUICulture
那么,我怎样才能得到它使用的真正文化呢?我需要它来获取多语言应用程序中 DateTimePicker 的字符串值,但格式与用户在表单上看到的格式完全相同(不,我不能设置“硬编码”自定义格式)。
示例:
当我使用本地波兰语设置在 Windows 上工作时,对于 LongTime,它是:HH:mm:ss并且 DateTimePicker 中的时间显示为:09 :26:50
现在,当我想在我的应用程序中选择不同的语言并在表单的构造函数中将文化设置更改为US时:
...
System.Globalization.CultureInfo ci = new System.Globalization.CultureInfo("en-US");
System.Threading.Thread.CurrentThread.CurrentCulture = ci;
System.Threading.Thread.CurrentThread.CurrentUICulture = ci;
InitializeComponent();
....
然后
MessageBox.Show(System.Globalization.DateTimeFormatInfo.CurrentInfo.LongTimePattern);
显示,新的时间格式是:h:mm:ss tt,但 DateTimePicker 仍在显示:09:26:50
当我尝试获取时间字符串时:
dateTimePicker1.Value.ToLongTimeString()
或者
dateTimePicker1.Value.ToString(System.Globalization.DateTimeFormatInfo.CurrentInfo.LongTimePattern)
然后时间显示为:9:26: 50 AM
所以我的问题是 - 我怎么知道 DateTimePicker 仍在使用系统的 CultureInfo("pl-PL") 或者它的显示格式是: HH:mm:ss ?