Eine Listenstruktur für folgendes Problem--Dringend Hilfe gesucht

Kai_Jack

Erfahrenes Mitglied
Hallo Leute,

ich brauche eine Listenstruktur für folgendes Abzubildende Phänomen (siehe Bild angehängt).


Diese Liste muß vorwärts und rückwärts abgesucht werden können. Ich habe schon versucht das selbst umzusetzen, aber es klappt gar nicht so wie ich dachte.

Kann mir jemand einen Tip geben bitte Ich brauche C#-Code wenn möglich


Gruß an alle
Masters of the Compuserve
euer JAck :)
 

Anhänge

  • 24965attachment.gif
    24965attachment.gif
    2,8 KB · Aufrufe: 12
Hi Norbert,

mittlerweile läuft alles ausser dieses hier, das ist etwas was man wohl einfügen muß für die Form als Komponente. Ich finde den Verweis nicht.

Code:
Graphviz Web Control

A server web control, QuickGraph.Web.Controls.GraphvizControl, is available: It has design time support so you can insert it in your toolbox.

The following examples show how to use the control:

    * .aspx

      <%@ Register TagPrefix="quickgraph" 
        Namespace="QuickGraph.Web.Controls" Assembly="QuickGraph.Web" %>
      ...
      <quickgraph:GraphvizControl RunAt="server" id="Dot" />

    * code behind

      GraphvizControl Dot;
      ...

      // PageLoad method
      IVertexAndEdgeListGraph g = ...;

      // output file path
      Dot.RelativePath = "./temp";
      Dot.Algo.VisitedGraph = g;
              
      Dot.Algo.Renderer.Prefix="customprefix";
      Dot.TimeOut = new TimeSpan(0,0,1,0,0); // files are cached
      Dot.Algo.Renderer.ImageType = 
        QuickGraph.Algorithms.Graphviz.GraphvizImageType.Svgz;

Wie füge ich das ein, es zeigt glaube ich das Diagramm dann an.

Gruß JAck :)
 

Neue Beiträge

Zurück