using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Data; using System.Windows; namespace Audit.ConvertModels { [ValueConversion(typeof(string), typeof(string))] internal class ColorSQLConvert : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { //int colorValue = (int)value; return ""; } public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) { return ""; } } }