Пример #1
0
 public void Push(Node n, Graph g, string param = null, GraphStackType type = GraphStackType.Parameter)
 {
     if (GraphDocuments.SelectedContentIndex > -1 && GraphDocuments.SelectedContentIndex < graphs.Count)
     {
         UIGraph ugraph = graphs[GraphDocuments.SelectedContentIndex];
         ugraph.Push(n, g, type, param);
     }
 }