eDosStationFull/eDosStation_Backup_2025.01.09_11.33.03/Converters.cs
2026-08-18 12:15:26 +02:00

30 lines
873 B
C#

using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Data;
using System.Windows.Media;
namespace eDosStation
{
class Converters
{
public class BrushColorConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
Color rv = System.Windows.Media.Colors.Green;
if (value == null || (bool?)value ==true ) rv = System.Windows.Media.Colors.Red;
return new SolidColorBrush(rv);
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
}
}