Exemplo n.º 1
0
 void DefaultLayer_ShapeAdded(object sender, SelectionEventArgs e)
 {
     if (this.ShapeAdded != null)
     {
         this.ShapeAdded(sender, e);
     }
 }
Exemplo n.º 2
0
 protected virtual void OnShapeLostSelection(SelectionEventArgs evt)
 {
     if (this.ShapeLostSelection != null)
     {
         this.ShapeLostSelection(this, evt);
     }
 }
Exemplo n.º 3
0
 protected virtual void OnShapeResized(SelectionEventArgs evt)
 {
     if (this.ShapeResized != null)
     {
         this.ShapeResized(this, evt);
     }
 }
Exemplo n.º 4
0
 protected virtual void OnLinkRelinked(SelectionEventArgs evt)
 {
     if (this.LinkRelinked != null)
     {
         this.LinkRelinked(this, evt);
     }
 }