LayoutTransform vs. RenderTransform – What’s the Difference?
December 19th, 2008
I have answered a few forum posts about the WPF transforms recently, mostly regarding confusion between RenderTransform and LayoutTransform. This brief blog post illustrates the difference between the two. The WPF layout system comprises, of two steps, followed by the rendering of the user interface (UI):
Measure
Arrange
Render
In the Measure step, the DesiredSize of each element [...]
