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