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(); } } }