using System; using System.Globalization; using System.Windows; using System.Windows.Data; namespace SWRIS.Converters { public class BoolToVisibilityConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { return value != null && value is bool isEnable && isEnable ? Visibility.Visible : Visibility.Collapsed; } public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) { throw new NotImplementedException(); } } }