1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using System.Globalization;
- using System.Linq;
- using System.Windows;
- using System.Windows.Data;
- namespace HandyControl.Tools.Converter;
- public class BooleanArr2VisibilityConverter : IMultiValueConverter
- {
- public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
- {
- if (values == null)
- {
- return Visibility.Collapsed;
- }
- var arr = new List<bool>();
- foreach (var item in values)
- {
- if (item is bool boolValue)
- {
- arr.Add(boolValue);
- }
- else
- {
- return Visibility.Collapsed;
- }
- }
- return arr.All(item => item) ? Visibility.Visible : Visibility.Collapsed;
- }
- public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
- {
- throw new NotSupportedException();
- }
- }
|