public EditPoint(ConnectorEditor owner, ConnectionPoint connectionPoint)
 {
     this.owner           = owner;
     this.editPointType   = EditPointTypes.ConnectionEditPoint;
     this.connectionPoint = connectionPoint;
     this.point           = connectionPoint.Location;
 }
 public EditPoint(EditPointTypes editPointType, Point point)
 {
     this.editPointType = editPointType;
     this.point = point;
 }
Esempio n. 3
0
 public EditPoint(EditPointTypes editPointType, Point point)
 {
     this.editPointType = editPointType;
     this.point         = point;
 }
 public EditPoint(ConnectorEditor owner, EditPointTypes editPointType, Point point)
 {
     this.owner         = owner;
     this.editPointType = editPointType;
     this.point         = point;
 }
 public EditPoint(ConnectorEditor owner, EditPointTypes editPointType, Point point)
 {
     this.owner = owner;
     this.editPointType = editPointType;
     this.point = point;
 }
 public EditPoint(ConnectorEditor owner, ConnectionPoint connectionPoint)
 {
     this.owner = owner;
     this.editPointType = EditPointTypes.ConnectionEditPoint;
     this.connectionPoint = connectionPoint;
     this.point = connectionPoint.Location;
 }