CaptionHeightConverter.cs 521 B

12345678910111213141516171819
  1. using System;
  2. using System.Globalization;
  3. using System.Windows.Data;
  4. namespace Compdfkit_Tools.Common
  5. {
  6. public class CaptionHeightConverter : IMultiValueConverter
  7. {
  8. public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
  9. {
  10. return (double)values[0] + (double)values[1];
  11. }
  12. public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
  13. {
  14. return null;
  15. }
  16. }
  17. }