BaconographyWP8.View.ScalingPictureView.OnManipulationStarted C# (CSharp) Method

OnManipulationStarted() private method

Handler for the ManipulationStarted event. Set initial state in case it becomes a pinch later.
private OnManipulationStarted ( object sender, System.Windows.Input.ManipulationStartedEventArgs e ) : void
sender object
e System.Windows.Input.ManipulationStartedEventArgs
return void
		void OnManipulationStarted(object sender, ManipulationStartedEventArgs e)
		{
			_pinching = false;
			_originalScale = _scale;
		}