using System; using System.Globalization; using System.Windows.Data; using System.Windows.Media; namespace Sicentury.Core.Converters { internal class MediaColorToSolidColorBrushConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { if (value is Color color) return new SolidColorBrush(color); return new SolidColorBrush(Colors.Black); } public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) { if (value is SolidColorBrush brush) return brush.Color; return Colors.Black; } } }