flower-story/FlowerApp/Controls/AppConverters.cs
2023-07-31 17:11:39 +08:00

21 lines
524 B
C#

using System.Globalization;
namespace Blahblah.FlowerApp;
internal class VisibleIfNotNullConverter : IValueConverter
{
public object? Convert(object? value, Type targetType, object? parameter, CultureInfo culture)
{
if (value is string s)
{
return !string.IsNullOrEmpty(s);
}
return value != null;
}
public object? ConvertBack(object? value, Type targetType, object? parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}