DRAG DROP
On the details page, you render the picture of the computer inside an object of the Rectangle type.
You need to implement the ability to rotate the rectangle that contains the picture.
How should you complete the code? To answer, drag the appropriate code elements to the correct targets.
Each element may be used once, more than once, or not at all. You may need to drag the split bar between
panes or scroll to view content.
Select and Place:
Explanation:
Box 1, Box 2: Get the Rectangle and its RenderTransform matrix:
Rectangle rectToMove = e.OriginalSource as Rectangle;
Matrix rectsMatrix = ((MatrixTransform)rectToMove.RenderTransform).Matrix;
Box 3, box 4, box 5: Rotate the Rectangle:
rectsMatrix.RotateAt(e.DeltaManipulation.Rotation,
e.ManipulationOrigin.X,
e.ManipulationOrigin.Y);https://msdn.microsoft.com/library/ee649090(v=vs.100).aspx
wtf, this is wpf question!
The second box contains invalid answer. I think that second box should be “RenderTransform” according to example: https://msdn.microsoft.com/pl-pl/library/ee649090(v=vs.110).aspx
btw. it is rather wpf question…
Correct, GP. It is RenderTransform