-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAgentStatusToColorConverter.cs
33 lines (28 loc) · 1.12 KB
/
AgentStatusToColorConverter.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using System;
using Windows.UI;
using Coder.Desktop.App.ViewModels;
using Microsoft.UI.Xaml.Data;
using Microsoft.UI.Xaml.Media;
namespace Coder.Desktop.App.Converters;
public class AgentStatusToColorConverter : IValueConverter
{
private static readonly SolidColorBrush Green = new(Color.FromArgb(255, 52, 199, 89));
private static readonly SolidColorBrush Yellow = new(Color.FromArgb(255, 255, 204, 1));
private static readonly SolidColorBrush Red = new(Color.FromArgb(255, 255, 59, 48));
private static readonly SolidColorBrush Gray = new(Color.FromArgb(255, 142, 142, 147));
public object Convert(object value, Type targetType, object parameter, string language)
{
if (value is not AgentConnectionStatus status) return Gray;
return status switch
{
AgentConnectionStatus.Green => Green,
AgentConnectionStatus.Yellow => Yellow,
AgentConnectionStatus.Red => Red,
_ => Gray,
};
}
public object ConvertBack(object value, Type targetType, object parameter, string language)
{
throw new NotImplementedException();
}
}