BoolToDirection.cs 634 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Windows;
  3. using System.Windows.Data;
  4. namespace Venus_Themes.Converters
  5. {
  6. public class BoolToDirection : IValueConverter
  7. {
  8. public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
  9. {
  10. if (value == null) return FlowDirection.LeftToRight;
  11. return (bool)value ? FlowDirection.LeftToRight : FlowDirection.RightToLeft;
  12. }
  13. public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
  14. {
  15. return null;
  16. }
  17. }
  18. }