31 lines
902 B
C#
31 lines
902 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Web.UI;
|
|
using System.Windows.Data;
|
|
using System.Windows.Markup;
|
|
|
|
namespace C4IT_CustomerPanel.Converter
|
|
{
|
|
public class EnumerationComparisonConverter : MarkupExtension, IValueConverter
|
|
{
|
|
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
|
|
{
|
|
return value?.Equals(parameter);
|
|
}
|
|
|
|
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
|
|
{
|
|
return value?.Equals(true) == true ? parameter : Binding.DoNothing;
|
|
}
|
|
|
|
public override object ProvideValue(IServiceProvider serviceProvider)
|
|
{
|
|
return this;
|
|
}
|
|
|
|
}
|
|
}
|