Files
BeWoPlaner/BeWo/Converter/TestDebugConverter.cs
2024-09-09 10:34:47 +02:00

19 lines
464 B
C#

using System;
using System.Globalization;
using System.Windows.Data;
namespace BeWo.Converter
{
public class TestDebugConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
return value;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
return value;
}
}
}