私のModelViewには、ObservableCollection of BitmapImagesがあり、私のビューのリストボックスに表示されます。 ObservableCollectionで選択したイメージを回転しようとしています。BitmapImage Rotation
答えて
Imageを(ListBox Itemとして)表示する方法を定義するDateTemplateでは、.RenderTransform
プロパティを使用してコントロールを変形/回転できます。
Buttonの例:
<Button
<Button.RenderTransform>
<RotateTransform CenterX="0" CenterY="0" Angle="45"/>
</Button.RenderTransform>
Test</Button>
されていますモデルビューのObservable Collectionでこれを直接行う方法があります。選択した画像だけをすべて回転させたくないのですから? –
あなたは、すべての画像を回転させる必要はありません、あなたのリストボックスでDataTemplateを使用すると、それらがあなたのために回転します。それ以外の場合は、WPFの外で画像を操作して、「回転状態」のコレクションに追加する必要があります –
画像が回転した場合、XPSファイルに同じ方法で保存する必要があります。私はまた、1つの回転ボタンを持っていた、私はリストボックスに入れていない。 –
[OK]を、それを考え出した、あなたは何かが
//Create a transform
TransformedBitmap tBmp = new TransformedBitmap();
tBmp.BeginInit();
//Set the source = to the image currently selected
tBmp.Source = _Scans[_selectedImage].MyImage;
RotateTransform rt = new RotateTransform(180);
tBmp.Transform = rt;
tBmp.EndInit();
//Create a new source after the transform
BitmapSource s1 = tBmp;
BitmapImage bi = BitmapSourceToBitmapImage(s1);
//Add create the item and replace the current item in the collection
//edited according to comment
//ScannedImages s = new ScannedImages();
//s.MyImage = bi;
//_Scans[_selectedImage] = s;
Scans[_selectedImage].MyImage = BitmapSourceToBitmapImage(s1);
OK、新しいアイテムを作成した最後の部分をスクラッチしてコレクションに追加します。私はかなりWPFとデータバインディングを新しくしており、コレクション内のアイテムにNotifyPropertyChangedを配置するのを忘れていました。したがって、コードの最後の4行はこの行にする必要があります。スキャン[_selectedImage] .MyImage = BitmapSourceToBitmapImage(s1); –
- 1. NSImage rotation
- 2. popover rotation
- 3. Android:canvas.drawoval()+ rotation
- 4. のBitmapImage()
- 5. Vector3 Lerp Rotation
- 6. Matlab Matrix Rotation、Dimensions
- 7. js rotation image timer
- 8. C#rotation(transformation)issue
- 9. Android:ImageView Rotation Scale
- 10. Pygame Image Rotation
- 11. Bing Maps Rotation
- 12. Three.js Points Rotation
- 13. Timed jQuery rotation
- 14. ThreeJS Rotation Animation
- 15. Xamarin UIImage rotation
- 16. Flex 4.5 BitmapImage spark
- 17. java quaternion 3D rotation implementation
- 18. uiview rotation reset size problem
- 19. GLSL 2D Rotation not working
- 20. JME3 geom rotation using mouse
- 21. WPFでBitmapImageをシリアライズ
- 22. async load C#のBitmapImage
- 23. WPF BitmapImageの印刷
- 24. XAMLバインドBitmapImage ViewModelプロパティ
- 25. BitmapImage to byte [] - C#web
- 26. Image vs BitmapImage vs Bitmap
- 27. android layout-land and screen-rotation handling
- 28. UIView RotationいいえXIB
- 29. OpenGL Rotation - Local vs Global Axes
- 30. Silverlight 4 BitmapImage - bmpファイルのサポート
愚かに見え、あなたの質問があるなら、私に知らせることができます... – anivas