Exemplo n.º 1
0
 public RectangleShape(Rectangle bounds, IHitTestStrategy hitTestStrategy)
 {
     Bounds          = bounds;
     HitTestStrategy = hitTestStrategy;
     ResizeHandles   = new ResizeHandleCollection(8, 8);
     ResizeHandles.SetLocation(Bounds);
 }
Exemplo n.º 2
0
 public OvalShape(Rectangle bounds, IHitTestStrategy hitTestStrategy)
     : base(bounds, hitTestStrategy)
 {
 }