czyszczenie kodu
This commit is contained in:
+9
-11
@@ -1,18 +1,16 @@
|
|||||||
using System;
|
using Haftmittel.Database;
|
||||||
|
using Haftmittel.Database.DataSetListaSkladnikowTableAdapters;
|
||||||
|
using Haftmittel.Database.DataSetListaTableAdapters;
|
||||||
|
using Haftmittel.Database.DataSetXLTableAdapters;
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Collections.ObjectModel;
|
using System.Collections.ObjectModel;
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Data;
|
|
||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
using System.Diagnostics;
|
using System.Data;
|
||||||
using System.Windows.Input;
|
using System.Linq;
|
||||||
using System.Windows;
|
|
||||||
using Haftmittel.Database;
|
|
||||||
using Haftmittel.Database.DataSetListaTableAdapters;
|
|
||||||
using Haftmittel.Database.DataSetListaSkladnikowTableAdapters;
|
|
||||||
using Haftmittel.Database.DataSetXLTableAdapters;
|
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
|
using System.Text;
|
||||||
|
using System.Windows;
|
||||||
|
|
||||||
namespace Haftmittel
|
namespace Haftmittel
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,7 +1,4 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Windows.Data;
|
using System.Windows.Data;
|
||||||
using System.Windows.Media;
|
using System.Windows.Media;
|
||||||
|
|
||||||
|
|||||||
@@ -1,11 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Windows;
|
|
||||||
using System.Windows.Data;
|
|
||||||
|
|
||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
|
using System.Windows.Data;
|
||||||
|
|
||||||
namespace Haftmittel
|
namespace Haftmittel
|
||||||
{
|
{
|
||||||
@@ -15,7 +10,7 @@ namespace Haftmittel
|
|||||||
[ValueConversion(typeof(double), typeof(bool))]
|
[ValueConversion(typeof(double), typeof(bool))]
|
||||||
public class ClassKonwerterNaProcenty: IValueConverter
|
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)
|
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)
|
if (value is double)
|
||||||
{
|
{
|
||||||
|
|||||||
+7
-16
@@ -1,25 +1,16 @@
|
|||||||
using System;
|
using Haftmittel.Properties;
|
||||||
using System.Collections.Generic;
|
using Microsoft.Data.SqlClient;
|
||||||
|
using System;
|
||||||
using System.Collections.ObjectModel;
|
using System.Collections.ObjectModel;
|
||||||
using System.Linq;
|
using System.Data.Odbc;
|
||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
using System.Text;
|
using System.IO;
|
||||||
using System.Reflection;
|
using System.Linq;
|
||||||
|
using System.Threading;
|
||||||
using System.Windows;
|
using System.Windows;
|
||||||
using System.Windows.Controls;
|
using System.Windows.Controls;
|
||||||
using System.Windows.Data;
|
|
||||||
using System.Windows.Documents;
|
|
||||||
using System.Windows.Input;
|
using System.Windows.Input;
|
||||||
using System.Windows.Media;
|
|
||||||
using System.Windows.Media.Imaging;
|
|
||||||
using System.Windows.Navigation;
|
|
||||||
using System.Windows.Shapes;
|
|
||||||
using System.IO;
|
|
||||||
using System.Threading;
|
|
||||||
using System.Windows.Markup;
|
using System.Windows.Markup;
|
||||||
using System.Data.Odbc;
|
|
||||||
using Microsoft.Data.SqlClient;
|
|
||||||
using Haftmittel.Properties;
|
|
||||||
|
|
||||||
namespace Haftmittel
|
namespace Haftmittel
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user