PowerToys/Wox/Converters/ImagePathConverter.cs
2016-04-22 22:42:26 +01:00

25 lines
676 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;
}
var image = App.ImageLoader.Load(value.ToString());
return image;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
return null;
}
}
}