我需要使用devexpress DateEdit控件显示日期和时间.这可以通过为DateEdit控件设置Mask来实现.因此,当前,我已经从当前线程UI文化中获取了DateTime模式,并将其设置为DevExpress DateEdit控件的EditMask属性.
这里的问题是,我还需要向用户显示毫秒.所有现有的区域性在DateTime模式中都没有毫秒.因此,我需要将毫秒字段(“ fff”)添加到所选区域性的DateTime模式中,并将其设置为DateEdit控件的EditMask属性.
我当前的代码块如下所示,
var dateEdit = new DateEdit();
dateEdit.Properties.VistaDisplayMode = DevExpress.Utils.DefaultBoolean.True;
dateEdit.Properties.VistaEditTime = DevExpress.Utils.DefaultBoolean.True;
CultureInfo currentUiCulture = Thread.CurrentThread.CurrentUICulture;
string editMask = currentUiCulture.DateTimeFormat.GeneralLongTimePattern;
dateEdit.Properties.EditMask = editMask;
以下是某些区域性的DateTime模式和预期模式,
Culture DateTime Pattern Expected DateTime Pattern
----------------------------------------------------------------
{en-US} "M/d/yyyy h:mm:ss tt" "M/d/yyyy h:mm:ss.fff tt"
{th-TH} "d/M/yyyy H:mm:ss" "d/M/yyyy H:mm:ss.fff"
{sv-SE} "yyyy-MM-dd HH:mm:ss" "yyyy-MM-dd HH:mm:ss.fff"
我该如何实现?
解决方法:
试试看:
// Append millisecond pattern to current culture's full date time pattern
string fullPattern = DateTimeFormatInfo.CurrentInfo.FullDateTimePattern;
fullPattern = Regex.Replace(fullPattern, "(:ss|:s)", "$1.fff");
来源:MSDN