protected override void OnAttached() { // Get the Android View corresponding to the Element that the effect is attached to view = Control == null ? Container : Control; // Get access to the TouchEffect class in the .NET Standard library DayVsNight.Effects.TouchEffect touchEffect = (DayVsNight.Effects.TouchEffect)Element.Effects. FirstOrDefault(e => e is DayVsNight.Effects.TouchEffect); if (touchEffect != null && view != null) { viewDictionary.Add(view, this); formsElement = Element; libTouchEffect = touchEffect; // Save fromPixels function fromPixels = view.Context.FromPixels; // Set event handler on View view.Touch += OnTouch; } }
public TouchRecognizer(Element element, UIView view, DayVsNight.Effects.TouchEffect touchEffect) { this.element = element; this.view = view; this.touchEffect = touchEffect; viewDictionary.Add(view, this); }