Create FrameworkElementExtensions.cs

This commit is contained in:
Wiesław Šoltés 2019-06-10 19:23:43 +02:00
Родитель f17e27e8dd
Коммит 795e6b10ca
1 изменённых файлов: 18 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,18 @@
using System.Windows;
using System.Windows.Media;
namespace WpfUnitTests
{
public static class FrameworkElementExtensions
{
public static Rect BoundsRelativeTo(this FrameworkElement element, Visual relativeTo)
{
return element.TransformToVisual(relativeTo).TransformBounds(new Rect(element.RenderSize));
}
public static Rect BoundsRelativeTo(this UIElement element, Visual relativeTo)
{
return BoundsRelativeTo((FrameworkElement)element, relativeTo);
}
}
}