Files
DP44/Common/DTS.Common/.svn/pristine/e4/e48f96bc6b8b6566227d655de02e7b2c25b2e440.svn-base

20 lines
690 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using System;
using System.Windows;
using System.Windows.Data;
namespace DTS.Common.Converters
{
public class InverseEnumVisibilityConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
return null != value && value.Equals(parameter) ? Visibility.Hidden : Visibility.Visible;
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
return null != value && value.Equals(Visibility.Hidden) ? parameter : Binding.DoNothing;
}
}
}