我在文本框中有代码:
{Parameters.dtFrom} - {Parameters.dtTo}
但它显示不是我需要的:
01.01.2014 00:00:00 - 12.12.2014 00:00:00
如何将DateTime值转换为ShortDateString(01.01.2014 - 12.12.2014)
感谢您的帮助。
P.S。抱歉我的英文不好
答案 0 :(得分:1)
我认为您可以使用格式文本功能执行此操作,请参阅here。
然后你可以做类似下面的事情
var textBox = new TextBox();
textBox.Value = "=Format('{0:dd.mm.yyyy}', Parameters.dtFrom) - Format('{0:dd.mm.yyyy}', Parameters.dtTo)";
答案 1 :(得分:0)
要将DateTime
值转换为ShortDateString
:Convert.ToDateTime(datepickerId.SelectedDate).ToShortDateString();