public FlowConnector(Control start, Control stop, FlowDiagram diagram)
 {
     this.parentDiagram = diagram;
     this.startControl  = start;
     this.stopControl   = stop;
 }
Exemplo n.º 2
0
 void FlowComponent.SetComponentContainer(FlowDiagram fd)
 {
     this.parentDiagram = fd;
 }
Exemplo n.º 3
0
 public void SetComponentContainer(FlowDiagram fd)
 {
     //throw new NotImplementedException();
     parentDiagram = fd;
 }
 void FlowComponent.SetComponentContainer(FlowDiagram fd)
 {
     //throw new NotImplementedException();
     this.parentDiagram = fd;
 }
 public FlowDiagramXML(FlowDiagram fd)
 {
     FlowTree = new FlowComponentXML(fd.StartNode);
 }