28 lines
754 B
C#
28 lines
754 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Globalization;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using System.Windows.Data;
|
|||
|
|
|
|||
|
|
namespace InSituLaboratory.Base.Converters
|
|||
|
|
{
|
|||
|
|
public class SectionConverter : IValueConverter
|
|||
|
|
{
|
|||
|
|
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
|
|||
|
|
{
|
|||
|
|
if (value != null && parameter != null)
|
|||
|
|
{
|
|||
|
|
return int.Parse(value.ToString()) == int.Parse(parameter.ToString());
|
|||
|
|
}
|
|||
|
|
return false;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
|
|||
|
|
{
|
|||
|
|
return parameter;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|