/// <summary>
 /// Ctor with the site of the entity
 /// </summary>
 /// <param name="site"></param>
 public Entity(DiagramControl site)
 {
     this.site = site;
 }
Example #2
0
 public Proxy(DiagramControl site)
 {
     this.site = site;
 }
Example #3
0
 /// <summary>
 /// Constructor with the site of the shape
 /// </summary>
 /// <param name="site">the DiagramControl instance to which the shape is attached</param>
 public ShapeBase(DiagramControl site) : base(site)
 {
     Init();
 }