namespace HeBianGu.App.Disk; using System; using System.Globalization; using System.Windows.Data; public class StatusToButtonConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { return (string)value switch { "下载中" => "暂停", "已暂停" => "恢复", _ => "开始" }; } public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) { throw new NotImplementedException(); } }