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.ConvertMoels { /// /// /// public class ColorSQLConvert : IValueConverter { /// /// /// public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { if (value != null) { string colorValue = string.Format("{0:X6}", (int)value);//十进制RGB数值转十六进制六位RGB并补0位例“C0C0C0” //string StuffColor = "#FF" + colorValue;//RGB数值拼接为ARGB数值 string StuffColor_B = colorValue.Substring(0, 2);//获取蓝色参数 string StuffColor_G = colorValue.Substring(2, 2);//获取绿色参数 string StuffColor_R = colorValue.Substring(4, 2);//获取红色参数 string StuffColor = "#FF" + StuffColor_R + StuffColor_G + StuffColor_B;//RGB数值拼接为ARGB数值 return StuffColor;//返回RGB数值例“#FFC0C0C0” } else { return "";//返回白色RGB数值 } } /// /// /// public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) { return ""; } } }