emby-toolbox/EmbyToolbox/Converters/BooleanNegationConverter.cs
Emby Toolbox 6264b487fe Initial commit: Emby Toolbox (conversion scroll fix, bulk Del for tracks).
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-12 21:33:47 +05:00

18 lines
472 B
C#

using System.Globalization;
using System.Windows.Data;
namespace EmbyToolbox.Converters;
public sealed class BooleanNegationConverter : IValueConverter
{
public object Convert(object? value, Type targetType, object? parameter, CultureInfo culture)
{
return value is bool b ? !b : true;
}
public object ConvertBack(object? value, Type targetType, object? parameter, CultureInfo culture)
{
return value is bool b ? !b : false;
}
}