Crunchy-Downloader/CRD/Utils/UI/UiSonarrIdToVisibilityConve...

21 lines
775 B
C#
Raw Normal View History

using System;
using System.Globalization;
using Avalonia.Data.Converters;
using CRD.Downloader;
using FluentAvalonia.UI.Controls;
namespace CRD.Utils.UI;
public class UiSonarrIdToVisibilityConverter : IValueConverter{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture){
if (value is string stringValue){
return Crunchyroll.Instance.CrunOptions.SonarrProperties != null && (stringValue.Length > 0 && Crunchyroll.Instance.CrunOptions.SonarrProperties.SonarrEnabled);
}
return false;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture){
throw new NotImplementedException("This converter only works for one-way binding");
}
}