Crunchy-Downloader/CRD/Utils/UI/UiEmptyToDefaultConverter.cs
Elwador 5cda547e22 Fix - Playback error probably only temporarily
Fix - Dub/Sub sorting reset on restart
2025-09-02 16:05:15 +02:00

14 lines
No EOL
531 B
C#

using System.Globalization;
using Avalonia.Data.Converters;
namespace CRD.Utils.UI;
public class UiEmptyToDefaultConverter: IValueConverter{
public object? Convert(object? value, System.Type targetType, object? parameter, CultureInfo culture){
var s = value as string;
var fallback = parameter as string ?? string.Empty;
return string.IsNullOrEmpty(s) ? fallback : s!;
}
public object? ConvertBack(object? value, System.Type targetType, object? parameter, CultureInfo culture) => value!;
}