mirror of
https://gitee.com/wang-yin1/wpf-visual-process-framework
synced 2026-03-03 00:00:56 +08:00
添加项目文件。
This commit is contained in:
30
VisionFrame.Base/Converter/LocationConverter.cs
Normal file
30
VisionFrame.Base/Converter/LocationConverter.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
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 VisionFrame.Base.Converter
|
||||
{
|
||||
public class LocationConverter : IMultiValueConverter
|
||||
{
|
||||
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
|
||||
{
|
||||
double.TryParse(values[0].ToString(), out double w);
|
||||
double.TryParse(values[1].ToString(), out double h);
|
||||
|
||||
double w1 = w * 2;
|
||||
double h1 = h * 2;
|
||||
|
||||
return new Thickness((w - w1) / 2, (h - h1) / 2, 0, 0);
|
||||
}
|
||||
|
||||
public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user