Slide 28
Slide 28 text
Value converters
■ Convert bindable properties into a different format
public class MyTimeAgoValueConverter : MvxValueConverter
{
protected override string Convert(DateTime value, Type targetType,
object parameter, CultureInfo cultureInfo)
{
var timeAgo = DateTime.UtcNow - value;
if (timeAgo.TotalSeconds < 30)
return "just now";
return "previously";
}
}