| 123456789101112131415161718192021222324252627282930 | 
							- using System;
 
- using System.Collections.Generic;
 
- using System.Linq;
 
- using System.Text;
 
- using System.Threading.Tasks;
 
- using System.Windows.Data;
 
- namespace PunkHPX8_Themes.Converters
 
- {
 
-     public class ToBoolMultiValueConverter2 : IMultiValueConverter
 
-     {
 
-         public object Convert(object[] values, Type targetType, object parameter, System.Globalization.CultureInfo culture)
 
-         {
 
-             foreach (var item in values)
 
-             {
 
-                 if ((bool)item == true)
 
-                 {
 
-                     return true;
 
-                 }
 
-             }
 
-             return false;
 
-         }
 
-         public object[] ConvertBack(object value, Type[] targetTypes, object parameter, System.Globalization.CultureInfo culture)
 
-         {
 
-             throw new NotImplementedException();
 
-         }
 
-     }
 
- }
 
 
  |