Explorar el Código

Added BooleanToGridLength Converter

frogsoftware hace 11 meses
padre
commit
7298f16c61
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. 5 0
      inabox.wpf/Converters/BooleanToGridLengthConverter.cs

+ 5 - 0
inabox.wpf/Converters/BooleanToGridLengthConverter.cs

@@ -0,0 +1,5 @@
+using System.Windows;
+
+namespace InABox.WPF;
+
+public class BooleanToGridLengthConverter : BooleanConverter<GridLength> { }