czyszczenie kodu

This commit is contained in:
2025-10-31 13:53:17 +01:00
parent 9e5fab5601
commit 6f454e5bcd
4 changed files with 19 additions and 38 deletions
+3 -8
View File
@@ -1,11 +1,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Data;
using System.Globalization;
using System.Windows.Data;
namespace Haftmittel
{
@@ -15,7 +10,7 @@ namespace Haftmittel
[ValueConversion(typeof(double), typeof(bool))]
public class ClassKonwerterNaProcenty: IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
if (value is bool)
{
@@ -34,7 +29,7 @@ namespace Haftmittel
}
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
if (value is double)
{