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
            AdvertisementSuperSlayer.TouchTracking.TouchEffect touchEffect =
                (AdvertisementSuperSlayer.TouchTracking.TouchEffect)Element.Effects.
                FirstOrDefault(e => e is AdvertisementSuperSlayer.TouchTracking.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;
            }
        }
Esempio n. 2
0
        public TouchRecognizer(Element element, UIView view, AdvertisementSuperSlayer.TouchTracking.TouchEffect touchEffect)
        {
            this.element     = element;
            this.view        = view;
            this.touchEffect = touchEffect;

            viewDictionary.Add(view, this);
        }
        protected override void OnAttached()
        {
            // Get the iOS UIView 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
            AdvertisementSuperSlayer.TouchTracking.TouchEffect effect = (AdvertisementSuperSlayer.TouchTracking.TouchEffect)Element.Effects.FirstOrDefault(e => e is AdvertisementSuperSlayer.TouchTracking.TouchEffect);

            if (effect != null && view != null)
            {
                // Create a TouchRecognizer for this UIView
                touchRecognizer = new TouchRecognizer(Element, view, effect);
                view.AddGestureRecognizer(touchRecognizer);
            }
        }
Esempio n. 4
0
        protected override void OnAttached()
        {
            // Get the Windows FrameworkElement corresponding to the Element that the effect is attached to
            frameworkElement = Control == null ? Container : Control;

            // Get access to the TouchEffect class in the .NET Standard library
            effect = (AdvertisementSuperSlayer.TouchTracking.TouchEffect)Element.Effects.
                     FirstOrDefault(e => e is AdvertisementSuperSlayer.TouchTracking.TouchEffect);

            if (effect != null && frameworkElement != null)
            {
                // Save the method to call on touch events
                onTouchAction = effect.OnTouchAction;

                // Set event handlers on FrameworkElement
                frameworkElement.PointerEntered  += OnPointerEntered;
                frameworkElement.PointerPressed  += OnPointerPressed;
                frameworkElement.PointerMoved    += OnPointerMoved;
                frameworkElement.PointerReleased += OnPointerReleased;
                frameworkElement.PointerExited   += OnPointerExited;
                frameworkElement.PointerCanceled += OnPointerCancelled;
            }
        }