忱 沈 4 years ago
parent
commit
6bc5d12a29
  1. 6
      ConvertMoels/ColorSQLConvert.cs
  2. 3
      View/StuffView.xaml.cs

6
ConvertMoels/ColorSQLConvert.cs

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

3
View/StuffView.xaml.cs

@ -18,6 +18,7 @@ using System.Drawing;
using System.Text.RegularExpressions;
using Models;
using Audit.ViewModel;
using Audit.ConvertMoels;
namespace Audit.View
{
@ -63,7 +64,7 @@ namespace Audit.View
else
{
if (int_stuff_ProductType == 0)//判断是否为染料,非染料写空
{
{
if (ColorCode_SQL >= 0) product.Color = ColorCode_SQL;//判断色彩数据是否有效,有效写入
}
else

Loading…
Cancel
Save