BoolToLight.cs 752 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Globalization;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Windows.Data;
  8. using System.Windows.Media;
  9. namespace SummaryModule.Converter;
  10. internal class BoolToLight : IValueConverter
  11. {
  12. public object? Convert(object? value, Type targetType, object parameter, CultureInfo culture)
  13. {
  14. if (value is not bool b)
  15. return default;
  16. return b ? (SolidColorBrush)Application.Current.FindResource("NormalColor") : (SolidColorBrush)Application.Current.FindResource("DisableColor");
  17. }
  18. public object? ConvertBack(object? value, Type targetType, object parameter, CultureInfo culture)
  19. {
  20. return default;
  21. }
  22. }