Beispiel #1
0
 private void graphObjectEditor_GraphObjectUpdated(object sender, 
     GraphObjectEditor.GraphObjectEventArgs e)
 {
     graphContainer.Refresh();
     if (e.ChangeKind == GraphObjectEditor.ChangeKind.Canceled ||
         e.ChangeKind == GraphObjectEditor.ChangeKind.Deleted)
     {
         infoSplit.Panel2Collapsed = true;
     }
 }
Beispiel #2
0
 public NodeSpecificsEditor(GraphObjectEditor parent, Node node)
 {
     this.parent = parent;
     this.node = node;
 }
Beispiel #3
0
 public ArcSpecificsEditor(GraphObjectEditor parent, Arc arc)
 {
     this.parent = parent;
     this.arc = arc;
 }