using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Data; namespace PipeGallery.Converter { public class PipeMaterialStateConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { try { bool state = (bool)value; if (state) { return "1"; } else { return "0"; } } catch { return ""; } } public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { throw new NotImplementedException(); } } }