3 writes to currentManipulation
System.Windows.Input.Manipulations (3)
System\Windows\Input\Manipulations\ManipulationProcessor2D.cs (3)
299
this.
currentManipulation
= null;
328
this.
currentManipulation
= (ManipulationSequence)sender;
369
this.
currentManipulation
= null;
10 references to currentManipulation
System.Windows.Input.Manipulations (10)
System\Windows\Input\Manipulations\ManipulationProcessor2D.cs (10)
275
ManipulationSequence manipulation = this.
currentManipulation
;
298
this.
currentManipulation
?.CompleteManipulation(timestamp);
327
Debug.Assert(this.
currentManipulation
== null, "Manipulation was already in progress");
332
this.
currentManipulation
.Delta += OnManipulationDelta;
333
this.
currentManipulation
.Completed += OnManipulationCompleted;
349
Debug.Assert(object.ReferenceEquals(sender, this.
currentManipulation
));
363
Debug.Assert(object.ReferenceEquals(sender, this.
currentManipulation
));
366
this.
currentManipulation
.Started -= OnManipulationStarted;
367
this.
currentManipulation
.Delta -= OnManipulationDelta;
368
this.
currentManipulation
.Completed -= OnManipulationCompleted;