FilterDemoFramework.FilterView.TouchesBegan C# (CSharp) 메소드

TouchesBegan() 공개 메소드

public TouchesBegan ( NSSet touches, UIEvent evt ) : void
touches NSSet
evt UIEvent
리턴 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 ();
			}
		}