using System; using System.Globalization; using System.Windows; using System.Windows.Data; namespace Aitex.Sorter.UI.Converter { public class WidthConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { if (value == null) return null; return (int)value - 10; } public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) { throw new NotImplementedException(); } } }