2020-11-27 18:51:02 +08:00
|
|
|
using System;
|
|
|
|
using System.Globalization;
|
|
|
|
using System.Windows.Data;
|
|
|
|
|
|
|
|
namespace BililiveRecorder.WPF.Converters
|
|
|
|
{
|
|
|
|
internal class ClipEnabledToBooleanConverter : IValueConverter
|
|
|
|
{
|
|
|
|
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
|
|
|
|
{
|
2021-02-23 18:03:37 +08:00
|
|
|
return false;
|
|
|
|
// return !(value is EnabledFeature v) || (EnabledFeature.RecordOnly != v);
|
|
|
|
// TODO fix me
|
2020-11-27 18:51:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|