在 WP7 上用 XAML 格式化日期
有没有办法使用 Windows Phone 7 的 XAML 来格式化日期?
如果尝试使用:
<TextBlock Text="{Binding Date, StringFormat={}{0:MM/dd/yyyy}}" />
但我收到错误:
在“Binding”类型中找不到属性“StringFormat”
Is there a way to format a date using XAML for Windows Phone 7?
If tried using:
<TextBlock Text="{Binding Date, StringFormat={}{0:MM/dd/yyyy}}" />
But I get the error:
The property 'StringFormat' was not found in type 'Binding'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 SL4 中,这是可能的...
...在 SL3 中,您需要使用 IValueConverter。
如果您想要一种更强大的方法,可以使用
ConverterParameter
。然后在您的 XAML 中,您首先将转换器定义为资源.....然后
引用它以及用于格式化
DateTime
值的可接受的参数...Within SL4 this is possible...
...within SL3 you would need to make use of an IValueConverter.
If you wanted a more robust approach you could make use of the
ConverterParameter
.Then in your XAML you would first define the converter as a resource...
..then reference it along with an acceptable parameter for formatting the
DateTime
value...据我所知,StringFromat 是 Silverlight 4 的功能,Silverlight for Windows Phone 7.0 基本上是 Silverlight 3 + 一些附加功能。我想没有。
As far as I'm aware StringFromat is Silverlight 4 function, Silverlight for Windows Phone 7.0 is basically Silverlight 3 + some extras. I guess no then.
这可能就是您正在寻找的。
RelativeDateTimeConverter
This is probably what you are looking for.
RelativeDateTimeConverter