PowerToys/Wox/Converters/ImagePathConverter.cs
2015-10-30 23:23:01 +00:00

25 lines
654 B
C#

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;
}
}
}