我想在程序中旋转WPF中的图像。我已经看到了如何将旋转绑定到控件。但是,我想将旋转绑定到对象的角度。我该怎么做?
答案 0 :(得分:4)
<Image Source="{Binding ElementName=ImageList,Path=SelectedItem.Image}">
<Image.LayoutTransform>
<RotateTransform Angle="{Binding RotationProperty}"/>
</Image.LayoutTransform>
</Image>