3 writes to currentManipulation
System.Windows.Input.Manipulations (3)
System\Windows\Input\Manipulations\ManipulationProcessor2D.cs (3)
302
this.
currentManipulation
= null;
332
this.
currentManipulation
= (ManipulationSequence)sender;
373
this.
currentManipulation
= null;
11 references to currentManipulation
System.Windows.Input.Manipulations (11)
System\Windows\Input\Manipulations\ManipulationProcessor2D.cs (11)
276
ManipulationSequence manipulation = this.
currentManipulation
;
299
if (this.
currentManipulation
!= null)
301
this.
currentManipulation
.CompleteManipulation(timestamp);
331
Debug.Assert(this.
currentManipulation
== null, "Manipulation was already in progress");
336
this.
currentManipulation
.Delta += OnManipulationDelta;
337
this.
currentManipulation
.Completed += OnManipulationCompleted;
353
Debug.Assert(object.ReferenceEquals(sender, this.
currentManipulation
));
367
Debug.Assert(object.ReferenceEquals(sender, this.
currentManipulation
));
370
this.
currentManipulation
.Started -= OnManipulationStarted;
371
this.
currentManipulation
.Delta -= OnManipulationDelta;
372
this.
currentManipulation
.Completed -= OnManipulationCompleted;