Parameters
- p
- the GoPort created for this node by CreatePort
protected virtual GoShape CreateShape(GoPort p) { // create the bigger circle/ellipse around and behind the port GoShape e = new GoEllipse(); SizeF psize = p.Size; e.Size = new SizeF(psize.Width + 2*7, psize.Height + 2*7); e.Selectable = false; e.Resizable = false; e.Reshapable = false; e.Brush = GoShape.Brushes_White; return e; }