using System; using System.Globalization; using System.Windows.Data; namespace Agent.Converters { class ResultConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { return (bool)value ? "성공" : "실패"; } public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) { throw new NotImplementedException(); } } }