我正在尝试实现自己的操作事件,我正在从这里https://msdn.microsoft.com/en-us/library/vstudio/ee649090(v=vs.100).aspx开始学习本教程。
但是,我无法理解ManipulationDelta事件的以下部分是做什么的。
有人可以向我解释一下吗?
// Apply the changes to the Rectangle.
rectToMove.RenderTransform = new MatrixTransform(rectsMatrix);
Rect containingRect =
new Rect(((FrameworkElement)e.ManipulationContainer).RenderSize);
Rect shapeBounds =
rectToMove.RenderTransform.TransformBounds(
new Rect(rectToMove.RenderSize));
任何帮助将不胜感激。谢谢。