我在嵌套的 silverlight 控件中使用 CompositeTransforms 并看到了意想不到的结果。
这是 XAML 的简化示例:
<Grid x:Name="ContainerControl" RenderTransformOrigin="0,0">
<Grid.RenderTransform>
<CompositeTransform Rotation="{Binding Rotation}"/>
</Grid.RenderTransform>
<Rectangle Width="50" Height="50" Fill="RoyalBlue" DataContext="{Binding Child}">
<Rectangle.RenderTransform>
<CompositeTransform TranslateX="{Binding XTranslation}" TranslateY="{Binding YTranslation}"/>
</Rectangle.RenderTransform>
</Rectangle>
</Grid>
使用非常简单的对象:
public class TestData
{
public decimal Rotation { get { return 90; } }
public TestChild Child { get { return new TestChild(); } }
}
public class TestChild
{
public decimal XTranslation { get { return 20; } }
public decimal YTranslation { get { return 30; } }
}
我假设子对象(矩形)将应用其平移变换,然后父对象(网格)将旋转整个事物。然而,这不是我所看到的。嵌套转换的执行顺序是什么?我怎样才能轻松地强迫它按我期望的方式工作?