mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
25 lines
676 B
C#
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;
|
|
}
|
|
}
|
|
} |