2015-06-04 13:15:54 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Windows.Data;
|
|
|
|
|
using System.Windows.Media;
|
|
|
|
|
|
2015-07-06 08:41:46 -04:00
|
|
|
|
namespace Filtration.Common.Converters
|
2015-06-04 13:15:54 -04:00
|
|
|
|
{
|
|
|
|
|
public class ColorToSolidColorBrushConverter : IValueConverter
|
|
|
|
|
{
|
|
|
|
|
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
|
|
|
|
|
{
|
|
|
|
|
return value != null ? new SolidColorBrush((Color)value) : null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
|
|
|
|
|
{
|
2015-12-13 15:17:15 -05:00
|
|
|
|
return ((SolidColorBrush) value)?.Color;
|
2015-06-04 13:15:54 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|