我想找到Left,Top,Right,Bottom
一个UIElement
. 我试过但失败了,没有结果。
这里的任何人都知道如何获得这些吗?
实际上,我正在 WPF 中创建一个自定义面板。
我不想从 Canvas 继承。
Size elemSize = this.ElementBeingDragged.DesiredSize;
// Get the element's offsets from the four sides of the Panel.
Vector v= VisualTreeHelper.GetOffset(this.ElementBeingDragged);
double left = v.X;
double right = v.X + elemSize.Width;
double top = v.Y;
double bottom = v.Y+elemSize.Height;