In WPF/Silverlight, can I get the calculated value of a UIElement after a transformation is applied?
(Per the comment below):
I've got a stack panel and I've applied a TranformGroup to it. There are two translate and one scale transforms in this group.
(warning, psuedo code ahead)
groupTransform.children.add(new TranslateTransform());
groupTransform.children.add(new ScaleTransform());
groupTransform.children.add(new TranslateTransform());
containerToScale.RenderTransform = groupTransform;
...
// code that sets values to all the transforms
Obviously the scale transform is the one I'm most interested in.