mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
32 lines
942 B
C#
32 lines
942 B
C#
using System;
|
|
using System.Globalization;
|
|
using System.Windows;
|
|
using System.Windows.Data;
|
|
|
|
namespace Flow.Launcher.Converters;
|
|
|
|
public class PlacementRectangleConverter : IMultiValueConverter
|
|
{
|
|
public Thickness Margin { get; set; }
|
|
|
|
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
|
|
{
|
|
if (values.Length == 2 &&
|
|
values[0] is double width &&
|
|
values[1] is double height)
|
|
{
|
|
var margin = Margin;
|
|
var topLeft = new Point(margin.Left, margin.Top);
|
|
var bottomRight = new Point(width - margin.Right, height - margin.Bottom);
|
|
var rect = new Rect(topLeft, bottomRight);
|
|
return rect;
|
|
}
|
|
|
|
return Rect.Empty;
|
|
}
|
|
|
|
public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|