我正在尝试将 TextBlock 绑定到 TimeSpan,但我需要格式化,以便如果 TotalMinutes 小于 60,它应该显示“X min”,否则应该显示“X h”。
它可能吗?这可能需要在 xaml 中进行汤姆逻辑测试?
我正在尝试将 TextBlock 绑定到 TimeSpan,但我需要格式化,以便如果 TotalMinutes 小于 60,它应该显示“X min”,否则应该显示“X h”。
它可能吗?这可能需要在 xaml 中进行汤姆逻辑测试?
您应该使用自定义IValueConverter
实现。有几个关于此的教程,例如在 Silverlight中使用数据绑定IValueConverter
。
您的IValueConverter
实现应如下所示:
public class TimeSpanToTextConverter : IValueConverter
{
public object Convert(object value, Type targetType,
object parameter, System.Globalization.CultureInfo culture)
{
if (!(value is TimeSpan))
throw new ArgumentException("value has to be TimeSpan", "value");
var timespan = (TimeSpan) value;
if (timespan.TotalMinutes > 60)
return string.Format("{0} h", timespan.Hours.ToString());
return string.Format("{0} m", timespan.Minutes.ToString());
}
public object ConvertBack(object value, Type targetType, object parameter,
System.Globalization.CultureInfo culture)
{
throw new NotImplementedException();
}
}