RetroFE/Configuration/Configuration/Converter/CollectionExistsConverter.cs
Vincent-FK 4692a90c48 reinitialize battery ast_id_ in free_graphics
Signed-off-by: Vincent-FK <vincent.buso@funkey-project.com>
2020-11-15 23:27:38 +01:00

24 lines
726 B
C#
Executable File

using System;
using System.Windows.Data;
namespace Configuration.Converter
{
public class CollectionExistsConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter,
System.Globalization.CultureInfo culture)
{
// if (targetType != typeof(bool))
// throw new InvalidOperationException("The target is not a bool");
return true;
// return !(bool)value;
}
public object ConvertBack(object value, Type targetType, object parameter,
System.Globalization.CultureInfo culture)
{
throw new NotSupportedException();
}
}
}