Sic04/SicUI/Models/RecipeEditors/Converters/RecipeErrorsCountToBadgeCon...

27 lines
639 B
C#
Raw Normal View History

using System;
using System.Globalization;
using System.Windows.Data;
namespace SicUI.Models.RecipeEditors
{
internal class RecipeErrorsCountToBadgeConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
if (!(value is int cnt))
return null;
if (cnt == 0)
return null;
return cnt;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
}