1

我想知道如何遍历 WPF 中的所有元素Grid,然后访问所有这些元素的绝对定位值 (X, Y) UIElements

4

1 回答 1

2
foreach (UIElement child in grid.Children)
{
    MatrixTransform t = (MatrixTransform)child.TransformToAncestor(grid);
    Point childLocation = new Point(t.Value.OffsetX, t.Value.OffsetY);
}

将为您提供所有直接子级相对于Grid.

于 2009-11-13T11:13:10.903 回答