From 1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1 Mon Sep 17 00:00:00 2001 From: Lucas Faria Mendes Date: Mon, 30 Mar 2026 10:38:18 -0300 Subject: chore: location --- .../ComparativoToolTipConverter.cs | 24 ---------------------- 1 file changed, 24 deletions(-) delete mode 100644 Gestor.Common/Gestor.Common.Converters/ComparativoToolTipConverter.cs (limited to 'Gestor.Common/Gestor.Common.Converters/ComparativoToolTipConverter.cs') diff --git a/Gestor.Common/Gestor.Common.Converters/ComparativoToolTipConverter.cs b/Gestor.Common/Gestor.Common.Converters/ComparativoToolTipConverter.cs deleted file mode 100644 index c10c19a..0000000 --- a/Gestor.Common/Gestor.Common.Converters/ComparativoToolTipConverter.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Globalization; -using System.Windows.Data; - -namespace Gestor.Common.Converters -{ - public class ComparativoToolTipConverter : IMultiValueConverter - { - public ComparativoToolTipConverter() - { - } - - public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture) - { - string str = (!(values[0] is int) ? "R$" : ""); - return string.Format("VALOR EM {0}: {1} {2}", values[0], str, values[1]); - } - - public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture) - { - return null; - } - } -} \ No newline at end of file -- cgit v1.2.3