mirror of
https://github.com/SpaceTimee/Sheas-Cealer.git
synced 2025-07-13 21:02:08 +08:00
18 lines
568 B
C#
18 lines
568 B
C#
using Avalonia.Data.Converters;
|
|
using Avalonia.Media;
|
|
using System;
|
|
using System.Globalization;
|
|
|
|
namespace Sheas_Cealer_Nix.Convs;
|
|
|
|
internal class AboutAccentButtonForegroundConv : IValueConverter
|
|
{
|
|
public object Convert(object? value, Type targetType, object? parameter, CultureInfo culture)
|
|
{
|
|
Color accentForegroundColor = (Color)value;
|
|
|
|
return new SolidColorBrush(accentForegroundColor);
|
|
}
|
|
|
|
public object ConvertBack(object? value, Type targetType, object? parameter, CultureInfo culture) => throw new NotImplementedException();
|
|
} |