using System; using System.Globalization; using System.IO; using System.Windows.Data; using System.Windows.Media.Imaging; namespace WpfTreeView { /// /// Converts a full path to a specific image type of a drive, folder or file /// [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(); } } }