Files
BeWoPlaner/BeWo/Converter/NullableBoolToBoolConverter.cs
rene 1438fc73a9 Budget zum Hilfeplan hinzugefügt
Pivot Grid Details hinzugefügt
2019-08-06 13:08:15 +02:00

23 lines
592 B
C#

using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BeWo.Converter
{
public class NullableBoolToBoolConverter : System.Windows.Data.IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
return false;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
}