如何在WPF中以程序方式旋转图像?

时间:2010-08-31 14:49:33

标签: c# wpf graphics

我想在程序中旋转WPF中的图像。我已经看到了如何将旋转绑定到控件。但是,我想将旋转绑定到对象的角度。我该怎么做?

1 个答案:

答案 0 :(得分:4)

<Image Source="{Binding ElementName=ImageList,Path=SelectedItem.Image}">
   <Image.LayoutTransform>
      <RotateTransform Angle="{Binding RotationProperty}"/>
   </Image.LayoutTransform>
</Image>

来源+更多信息: http://www.nbdtech.com/Blog/archive/2007/11/15/wpf-image-viewer-part-7-rotating-the-image-with-a.aspx