I have a Canvas which contains a few Textblocks and I need to find the top and left corner points that were assigned in the XAML Document. How can
Canvas
Textblocks
foreach (FrameworkElement fe in Canvas.Children) Thickness margin = fe.Margin; MessageBox.Show("Left: " + margin.Left + "Top: " + margin.Top);