using System; using System.Globalization; using System.Windows; using System.Windows.Data; namespace Wox.Converters { public class ImagePathConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { if (value == null || value == DependencyProperty.UnsetValue) { return null; } return ImageLoader.ImageLoader.Load(value.ToString()); } public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) { return null; } } }