mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-25 21:07:20 -08:00
21 lines
602 B
C#
21 lines
602 B
C#
using System;
|
|
using System.Globalization;
|
|
using System.IO;
|
|
using System.Windows.Data;
|
|
|
|
namespace SourceGit.Views.Converters {
|
|
|
|
/// <summary>
|
|
/// 将路径转换为纯目录
|
|
/// </summary>
|
|
public class PureFolderName : IValueConverter {
|
|
|
|
public object Convert(object value, Type targetType, object parameter, CultureInfo culture) {
|
|
return Path.GetDirectoryName(value as string);
|
|
}
|
|
|
|
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) {
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|