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