using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Data; namespace SlnMesnac.WPF.Converter.AgvAndTask { public class TaskStatusConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { if (value is int status) { return status switch { 0 => "未下发", 1 => "已下发", > 1 and < 6 => "执行中", >= 6 => "执行完成", _ => "未知状态", }; } return "未知状态"; } public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) { throw new NotImplementedException(); } } }