37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json.Linq;
|
|
using System.Windows.Media.Imaging;
|
|
using System.Windows;
|
|
using System.Windows.Data;
|
|
|
|
namespace SWS.CAD.Converter
|
|
{
|
|
public class ImageSourceConverter : IValueConverter
|
|
{
|
|
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
|
|
{
|
|
if (value == null)
|
|
return DependencyProperty.UnsetValue;
|
|
|
|
var path = value.ToString();
|
|
BitmapImage image = new BitmapImage();
|
|
image.BeginInit();
|
|
image.CacheOption = BitmapCacheOption.OnLoad;
|
|
image.CreateOptions = BitmapCreateOptions.IgnoreImageCache;
|
|
image.UriSource = new Uri(path, UriKind.Absolute);
|
|
image.EndInit();
|
|
return image;
|
|
}
|
|
|
|
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|