mirror of
https://github.com/LorisYounger/VPet.git
synced 2025-07-25 12:55:15 +00:00
18 lines
449 B
C#
18 lines
449 B
C#
using System.Globalization;
|
|
using System.Windows.Data;
|
|
|
|
namespace VPet.House.Converters;
|
|
|
|
public class NullToFalseConverter : IValueConverter
|
|
{
|
|
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
|
|
{
|
|
return value is not null;
|
|
}
|
|
|
|
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|