Beispiel #1
0
        public override bool OnTouchEvent(Android.Views.MotionEvent e)
        {
            if (this.Element is CustomPageView)
            {
                var            view   = this.Control;
                TouchData      data   = TouchData.FromAndroid(e);
                CustomPageView custom = (CustomPageView)this.Element;
                custom.OnTouch(data);
            }

            return(true);
        }