| 12345678910111213141516171819202122232425262728293031323334 | using System;using System.Collections.Generic;using System.Drawing;using System.Globalization;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Data;namespace FurnaceUI.Converter{    public class StatusForegroundConverter : IValueConverter    {        public object Convert(object value, Type targetType, object parameter, CultureInfo culture)        {            if (value == null || parameter == null)            {                return "Black";            }            else if (value.ToString() == parameter.ToString())            {                //return "#FF00AF80";                return "White";            }            return "Black";        }        public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)        {            throw new NotImplementedException();        }    }}
 |