|
|
@ -5,19 +5,23 @@ using System.Linq; |
|
|
using System.Text; |
|
|
using System.Text; |
|
|
using System.Threading.Tasks; |
|
|
using System.Threading.Tasks; |
|
|
using System.Windows.Data; |
|
|
using System.Windows.Data; |
|
|
|
|
|
using System.Windows; |
|
|
|
|
|
|
|
|
namespace Audit.ColorSQLConvert |
|
|
namespace Audit.ColorSQLConvert |
|
|
|
|
|
|
|
|
{ |
|
|
{ |
|
|
|
|
|
[ValueConversion(typeof(string), typeof(string))] |
|
|
internal class ColorSQLConvert : IValueConverter |
|
|
internal class ColorSQLConvert : IValueConverter |
|
|
{ |
|
|
{ |
|
|
public object Convert(object value, Type targetType, object parameter, CultureInfo culture) |
|
|
public object Convert(object value, Type targetType, object parameter, CultureInfo culture) |
|
|
{ |
|
|
{ |
|
|
throw new NotImplementedException(); |
|
|
int colorValue = (int)value; |
|
|
|
|
|
return ""; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) |
|
|
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) |
|
|
{ |
|
|
{ |
|
|
throw new NotImplementedException(); |
|
|
return ""; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|