123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Globalization;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Windows.Data;
- namespace PDF_Master.DataConvert
- {
- public class CenterToolTipConverter : IMultiValueConverter
- {
- public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
- {
- if (values.FirstOrDefault(v => v == DependencyProperty.UnsetValue) != null)
- {
- return double.NaN;
- }
- double placementTargetWidth = (double)values[0];
- double toolTipWidth = (double)values[1];
- return (placementTargetWidth / 4.0*3) - (toolTipWidth / 2.0);
- }
- public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
- {
- throw new NotSupportedException();
- }
- }
- }
|