I would like to know how to iterate through all the elements in a WPF Grid, and then access the absolute positioning values (X, Y) for all of these UIElements.

link

74% accept rate
feedback

1 Answer

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

Will give you the coordinates of all the direct children relative to the Grid

link
thanks a lot! thanks a lot! – geejay Nov 13 '09 at 12:50
you're welcome :) – Jesper Larsen-Ledet Nov 15 '09 at 19:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.