|
|
@ -14,12 +14,12 @@ namespace Audit.ConvertMoels |
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
public class ColorSQLConvert : IValueConverter |
|
|
public class ColorSQLConvert : IValueConverter |
|
|
{ |
|
|
{ |
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
public object Convert(object value, Type targetType, object parameter, CultureInfo culture) |
|
|
public object Convert(object value, Type targetType, object parameter, CultureInfo culture) |
|
|
{ |
|
|
{ |
|
|
if (value != null) |
|
|
if (value != null) |
|
|
{ |
|
|
{ |
|
|
string colorValue = string.Format("{0:X6}", value);//十进制RGB数值转十六进制六位RGB并补0位例“C0C0C0”
|
|
|
string colorValue = string.Format("{0:X6}", value);//十进制RGB数值转十六进制六位RGB并补0位例“C0C0C0”
|
|
|
/*string StuffColor = "#FF" + colorValue;//RGB数值拼接为ARGB数值(正向)*/ |
|
|
/*string StuffColor = "#FF" + colorValue;//RGB数值拼接为ARGB数值(正向)*/ |
|
|
string StuffColor_B = colorValue.Substring(0, 2);//获取蓝色参数
|
|
|
string StuffColor_B = colorValue.Substring(0, 2);//获取蓝色参数
|
|
|
|