Files
Needlework.Net/Needlework.Net/Converters/NullableToVisibility.cs
T
2025-06-13 22:52:58 -05:00

20 lines
520 B
C#

using Avalonia.Data.Converters;
using System;
using System.Globalization;
namespace Needlework.Net.Converters
{
public class NullableToVisibility : IValueConverter
{
public object? Convert(object? value, Type targetType, object? parameter, CultureInfo culture)
{
return value != null;
}
public object? ConvertBack(object? value, Type targetType, object? parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
}