HomePageFileListHeightConverter.cs 865 B

12345678910111213141516171819202122232425262728293031
  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. namespace ComPDFKit.Controls.Common
  9. {
  10. public class HomePageFileListHeightConverter : IMultiValueConverter
  11. {
  12. public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
  13. {
  14. if (values[0] == null || values[1] == null)
  15. {
  16. return false;
  17. }
  18. else
  19. {
  20. var value = (double)values[0] - (double)values[1] - 32;
  21. return (value >= 200.0) ? value : 200.0;
  22. }
  23. }
  24. public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
  25. {
  26. return null;
  27. }
  28. }
  29. }