LSFE/LSFE.MobApp/Converters/StatusTextConverter.cs
2026-07-30 10:31:04 +08:00

27 lines
701 B
C#

using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LSFE.MobApp.Converters
{
public class StatusTextConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
if (value is bool isActive)
{
return isActive ? "ACTIVE" : "INACTIVE";
}
return "UNKNOWN";
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
}