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