3 writes to currentManipulation
System.Windows.Input.Manipulations (3)
System\Windows\Input\Manipulations\ManipulationProcessor2D.cs (3)
301this.currentManipulation = null; 331this.currentManipulation = (ManipulationSequence)sender; 372this.currentManipulation = null;
11 references to currentManipulation
System.Windows.Input.Manipulations (11)
System\Windows\Input\Manipulations\ManipulationProcessor2D.cs (11)
275ManipulationSequence manipulation = this.currentManipulation; 298if (this.currentManipulation != null) 300this.currentManipulation.CompleteManipulation(timestamp); 330Debug.Assert(this.currentManipulation == null, "Manipulation was already in progress"); 335this.currentManipulation.Delta += OnManipulationDelta; 336this.currentManipulation.Completed += OnManipulationCompleted; 352Debug.Assert(object.ReferenceEquals(sender, this.currentManipulation)); 366Debug.Assert(object.ReferenceEquals(sender, this.currentManipulation)); 369this.currentManipulation.Started -= OnManipulationStarted; 370this.currentManipulation.Delta -= OnManipulationDelta; 371this.currentManipulation.Completed -= OnManipulationCompleted;