using System.Windows.Data; namespace MicaSetup.Design.Converters; [ValueConversion(typeof(bool), typeof(bool))] public class BoolNegationConverter : BoolToValueConverter { public BoolNegationConverter() { this.TrueValue = true; this.FalseValue = false; this.IsInverted = true; } }