40 lines
999 B
C#
40 lines
999 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
using System.Windows.Data;
|
|
|
|
namespace BDU.Converters
|
|
{
|
|
public class StepResultToStringConverter : IValueConverter
|
|
{
|
|
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
|
|
{
|
|
if(value is int result)
|
|
{
|
|
if (result == -1)
|
|
{
|
|
return "";
|
|
}
|
|
else if(result == 1)
|
|
{
|
|
return "PASS";
|
|
}
|
|
else if(result == 2)
|
|
{
|
|
return "FAIL";
|
|
}
|
|
}
|
|
return "";
|
|
}
|
|
|
|
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|