示例#1
0
        public bool IsPointInBounds(CCTouch touch)
        {
            var screenToWorldspace = ScreenToWorldspace(touch.LocationOnScreen);
            var isPointInBounds    = ClientRectangle.ContainsPoint(screenToWorldspace);

            return(isPointInBounds);
        }