예제 #1
0
        internal override bool OnTouchDown(int x, int y)
        {
            bool result = _captured != null?_captured.OnTouchDown(x, y) : base.OnTouchDown(x, y);

            if (!result && TouchDown != null)
            {
                result = TouchDown(this, x, y);
            }
            return(result);
        }