eDosStation/eDosStation/Converters.cs
Luc Vandenbroucke 4c713b89df working 1
2019-02-19 15:08:06 +01: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();
}
}
}
}