using HighWayIot.Common; using System; using System.Globalization; using System.Windows.Data; namespace Aucma.Scada.UI.Converter.LinerInventory { public class StatusLabelConverter : IValueConverter { private StringChange stringChange = StringChange.Instance; public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { if (value == null) { return false; } else { int info = (int)value; if (info == 1) { return "green"; } else { return "red"; } } } public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) { throw new NotImplementedException(); } } }