FilterDemoFramework.FilterView.TouchesBegan C# (CSharp) Method

TouchesBegan() public method

public TouchesBegan ( NSSet touches, UIEvent evt ) : void
touches NSSet
evt UIEvent
return void
		public override void TouchesBegan (NSSet touches, UIEvent evt)
		{
			base.TouchesBegan (touches, evt);

			var pointOfTouch = ((UITouch)touches.FirstOrDefault ()).LocationInView (this);
			pointOfTouch.Y += bottomMargin;

			if (graphLayer.Contains (pointOfTouch)) {
				touchDown = true;
				editPoint = pointOfTouch;

				UpdateFrequenciesAndResonance ();
			}
		}