Пример #1
0
        public virtual bool UpdateSelected(Point point, ref LeShape shape0)
        {
            if (Boundary.Contains(point))
            {
                selected = true;
                shape0   = this;
            }
            else
            {
                selected = false;
            }

            return(selected);
        }
Пример #2
0
 internal void AddFriend(LeShape leShape)
 {
 }
Пример #3
0
 internal void Add(LeShape leShape)
 {
     ShapeList.Add(leShape);
     XMLShapes.Total++;
 }
Пример #4
0
 internal void Remove(LeShape leShape)
 {
     ShapeList.Remove(leShape);
 }