Files
DaSaSo/DaSaSo.Wpf/Converters/EqualValueToBooleanConverter.cs
2021-09-28 10:46:16 +02:00

28 lines
788 B
C#

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Data;
namespace DaSaSo.Wpf.Converters
{
public class EqualValueToBooleanConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
if(value.ToString() == "DaSaSo.ViewModel.SewerMainListViewModel")
return Visibility.Visible;
return Visibility.Hidden;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
}