Restructuration

This commit is contained in:
2020-11-30 00:19:37 +01:00
parent 1bcaa3c841
commit c3b67ca667
28 changed files with 1082 additions and 452 deletions

View File

@ -0,0 +1,15 @@
using System;
using System.Globalization;
using System.Windows.Data;
namespace Hermes.Converter {
class NegateBoolean : IValueConverter {
public object Convert(object value, Type targetType, object parameter, CultureInfo culture) {
return !(bool) value;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) {
return !(bool) value;
}
}
}