mirror of
https://github.com/2dust/v2rayN.git
synced 2025-10-27 18:42:52 +00:00
25 lines
699 B
C#
25 lines
699 B
C#
using System.Globalization;
|
|
using Avalonia.Data.Converters;
|
|
using Avalonia.Media;
|
|
|
|
namespace v2rayN.Desktop.Converters;
|
|
|
|
public class DelayColorConverter : IValueConverter
|
|
{
|
|
public object? Convert(object? value, Type targetType, object? parameter, CultureInfo culture)
|
|
{
|
|
_ = int.TryParse(value?.ToString(), out var delay);
|
|
|
|
return delay switch
|
|
{
|
|
<= 0 => new SolidColorBrush(Colors.Red),
|
|
<= 500 => new SolidColorBrush(Colors.Green),
|
|
_ => new SolidColorBrush(Colors.IndianRed)
|
|
};
|
|
}
|
|
|
|
public object? ConvertBack(object? value, Type targetType, object? parameter, CultureInfo culture)
|
|
{
|
|
return null;
|
|
}
|
|
}
|