You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
952 B
32 lines
952 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Data;
|
|
|
|
namespace Audit.ConvertMoels
|
|
{
|
|
internal class DeviationConvert : IMultiValueConverter
|
|
{
|
|
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
|
|
{
|
|
string a = System.Convert.ToString(values[0]);
|
|
string b = System.Convert.ToString(values[1]);
|
|
if (a != "" && b != "")
|
|
{
|
|
string c = (System.Convert.ToSingle(b) - System.Convert.ToSingle(a)).ToString("0.0");
|
|
//string c = "0";
|
|
return c;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public object[] ConvertBack(object value, Type[] targetType, object parameter, CultureInfo culture)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
}
|
|
}
|
|
|