28 lines
882 B
C#
28 lines
882 B
C#
using System;
|
|
using System.Globalization;
|
|
using System.IO;
|
|
using System.Windows.Data;
|
|
using System.Windows.Media.Imaging;
|
|
|
|
namespace WpfTreeView
|
|
{
|
|
/// <summary>
|
|
/// Converts a full path to a specific image type of a drive, folder or file
|
|
/// </summary>
|
|
[ValueConversion(typeof(DirectoryItemType), typeof(BitmapImage))]
|
|
public class HeaderToImageConverter : IValueConverter
|
|
{
|
|
public static HeaderToImageConverter Instance = new HeaderToImageConverter();
|
|
|
|
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
|
|
{
|
|
return new BitmapImage(new Uri($"pack://application:,,,/Images/{value}.png"));
|
|
}
|
|
|
|
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|