の を見つけたい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;