mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2025-12-26 16:48:51 +01:00
24 lines
726 B
C#
Executable File
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();
|
|
}
|
|
}
|
|
}
|