Files
BeWoPlaner/BeWo/Converter/CollectionCountToBoolConverter.cs
2016-06-27 01:45:38 +02:00

28 lines
708 B
C#

using System;
using System.Globalization;
using System.Windows.Data;
namespace BeWo.Converter
{
public class CollectionCountToBoolConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
try
{
var count = (int) value;
return count > 0;
}
catch (Exception)
{
return false;
}
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
}