标签: c# xamarin.forms
我有一个以UTC时间字符串形式出现的绑定文本,我需要转换时间。
绑定上下文项本身是使用Newtonsoft Json.NET转换的JSON对象。
<Label Text="{Binding UTCtime}"/>
答案 0 :(得分:0)
您需要实现IValueConverter并绑定到它而不是直接绑定到源值。
这里有一个很好的例子:Displaying the time in the local time zone in WPF/XAML