位图图像旋转
在我的 ModelView 中,我有一个 BitmapImages 的 ObservableCollection,它显示在我的视图上的列表框中。我正在尝试旋转 ObservableCollection 中选定的图像。
In my ModelView I have an ObservableCollection of BitmapImages that displays in a listbox on my view. I am trying to rotate the selected image in the ObservableCollection.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好的,明白了,如果有什么事情看起来很愚蠢,你可以告诉我
Ok, figured it out and you can let me know if something looks stupid
在您定义如何显示图像(作为列表框项)的 DateTemplate 中,您可以使用
.RenderTransform
属性来转换/旋转您的控件。按钮示例:
了解有关如何旋转对象的更多信息? MSDN 文章
In your DateTemplate where you define how you would like to display your Image (as ListBox Item), you can use
.RenderTransform
property to transform/rotate your Control.Example for Button:
Have a read more on How to Rotate an object? MSDN Article