📄 doc.xml
字号:
<member name="P:Netron.Lithium.LithiumControl.LayoutEnabled">
<summary>
Gets or sets whether the tree layout algorithm will do its work by default
</summary>
</member>
<member name="P:Netron.Lithium.LithiumControl.Shapes">
<summary>
Gets or sets the shape collection
</summary>
</member>
<member name="P:Netron.Lithium.LithiumControl.Connections">
<summary>
Gets or sets the connection collection
</summary>
</member>
<member name="P:Netron.Lithium.LithiumControl.Root">
<summary>
Gets the root of the diagram
</summary>
</member>
<member name="P:Netron.Lithium.LithiumControl.BranchHeight">
<summary>
Gets or sets the height between the tree branches
</summary>
</member>
<member name="P:Netron.Lithium.LithiumControl.WordSpacing">
<summary>
Gets or sets the spacing between the nodes
</summary>
</member>
<member name="T:Netron.Lithium.DeleteVisitor">
<summary>
Deletion of shapes is implemented via a visitor pattern to handle the fact
that child nodes have to be deleted before its parent
</summary>
</member>
<member name="F:Netron.Lithium.DeleteVisitor.graphAbstract">
<summary>
the reference to the abstract
</summary>
</member>
<member name="M:Netron.Lithium.DeleteVisitor.#ctor(Netron.Lithium.GraphAbstract)">
<summary>
Constructor
</summary>
<param name="graphAbstract">a GraphAbstract instance</param>
</member>
<member name="M:Netron.Lithium.DeleteVisitor.Visit(Netron.Lithium.ShapeBase)">
<summary>
Visits the shape
</summary>
<param name="sh"></param>
</member>
<member name="E:Netron.Lithium.DeleteVisitor.OnDelete">
<summary>
Occurs when a shape is deleted
</summary>
</member>
<member name="P:Netron.Lithium.DeleteVisitor.IsDone">
<summary>
Gets whether the visiting is done
</summary>
</member>
<member name="T:Netron.Lithium.ExpanderVisitor">
<summary>
Expands each node on visit
</summary>
</member>
<member name="M:Netron.Lithium.ExpanderVisitor.Visit(Netron.Lithium.ShapeBase)">
<summary>
Visits the shape
</summary>
<param name="sh"></param>
</member>
<member name="P:Netron.Lithium.ExpanderVisitor.IsDone">
<summary>
Gets whether the visiting is done
</summary>
</member>
<member name="T:Netron.Lithium.Connection">
<summary>
Represents the connection between two connectors
</summary>
</member>
<member name="F:Netron.Lithium.Connection.from">
<summary>
the shape where the connection starts
</summary>
</member>
<member name="F:Netron.Lithium.Connection.to">
<summary>
the shape where the connection ends
</summary>
</member>
<member name="F:Netron.Lithium.Connection.start">
<summary>
the start and end points
</summary>
</member>
<member name="F:Netron.Lithium.Connection.end">
<summary>
the start and end points
</summary>
</member>
<member name="F:Netron.Lithium.Connection.currentPen">
<summary>
the pen used to draw the connection,
can switch depending on the hovering state e.g.
</summary>
</member>
<member name="M:Netron.Lithium.Connection.#ctor">
<summary>
Default ctor
</summary>
</member>
<member name="M:Netron.Lithium.Connection.#ctor(Netron.Lithium.ShapeBase,Netron.Lithium.ShapeBase)">
<summary>
Constructor
</summary>
<param name="from">the shape where the connection starts</param>
<param name="to">the shape where the connection ends</param>
</member>
<member name="M:Netron.Lithium.Connection.#ctor(Netron.Lithium.ShapeBase,Netron.Lithium.ShapeBase,System.Drawing.Color)">
<summary>
Constructor
</summary>
<param name="from">the shape where the connection starts</param>
<param name="to">the shape where the connection ends</param>
<param name="color">the color of the connection</param>
</member>
<member name="M:Netron.Lithium.Connection.#ctor(Netron.Lithium.ShapeBase,Netron.Lithium.ShapeBase,System.Drawing.Color,System.Single)">
<summary>
Constructor
</summary>
<param name="from">the shape where the connection starts</param>
<param name="to">the shape where the connection ends</param>
<param name="color">the color of the connection</param>
<param name="width">the (float) width of the connection (in pixels)</param>
</member>
<!-- Badly formed XML comment ignored for member "M:Netron.Lithium.Connection.Paint(System.Drawing.Graphics)" -->
<member name="M:Netron.Lithium.Connection.Invalidate">
<summary>
Invalidates the connection
</summary>
</member>
<member name="M:Netron.Lithium.Connection.Hit(System.Drawing.Point)">
<summary>
Tests if the mouse hits this connection
</summary>
<param name="p"></param>
<returns></returns>
</member>
<member name="M:Netron.Lithium.Connection.Move(System.Drawing.Point)">
<summary>
Moves the connection with the given shift
</summary>
<param name="p"></param>
</member>
<member name="P:Netron.Lithium.Connection.From">
<summary>
Gets or sets the shape where the connection starts
</summary>
</member>
<member name="P:Netron.Lithium.Connection.To">
<summary>
Gets or sets where the connection ends
</summary>
</member>
<member name="P:Netron.Lithium.Connection.Start">
<summary>
Get the point where the connection starts
</summary>
</member>
<member name="P:Netron.Lithium.Connection.End">
<summary>
Gets the point where connection ends
</summary>
</member>
<member name="T:Netron.Lithium.GraphAbstract">
<summary>
</summary>
</member>
<member name="F:Netron.Lithium.GraphAbstract.description">
<summary>
the description of the diagram,
can be expanded to much more and whatever you wish to store about author etc...
</summary>
</member>
<member name="F:Netron.Lithium.GraphAbstract.shapes">
<summary>
the collection of shapes on the canvas
</summary>
</member>
<member name="F:Netron.Lithium.GraphAbstract.connections">
<summary>
the collection of connections on the canvas
</summary>
</member>
<member name="F:Netron.Lithium.GraphAbstract.root">
<summary>
the root of the diagram
</summary>
</member>
<member name="M:Netron.Lithium.GraphAbstract.#ctor">
<summary>
Default ctor
</summary>
</member>
<member name="M:Netron.Lithium.GraphAbstract.BreadthFirstTraversal(Netron.Lithium.IVisitor,Netron.Lithium.ShapeBase)">
<summary>
BFT of the diagram with the given visitor, starting from the given shape
</summary>
<param name="visitor"></param>
<param name="shape"></param>
</member>
<member name="M:Netron.Lithium.GraphAbstract.BreadthFirstTraversal(Netron.Lithium.IVisitor)">
<summary>
BFT of the diagram starting from the root
</summary>
<param name="visitor"></param>
</member>
<member name="M:Netron.Lithium.GraphAbstract.BFT(Netron.Lithium.IVisitor,Netron.Lithium.ShapeBase)">
<summary>
BFT of the diagram with the given visitor, starting from the given shape
</summary>
<param name="visitor"></param>
<param name="shape"></param>
</member>
<member name="M:Netron.Lithium.GraphAbstract.DFT(Netron.Lithium.IVisitor,Netron.Lithium.ShapeBase)">
<summary>
DFT of the (sub)graph starting from the given shape
</summary>
<param name="visitor"></param>
<param name="shape"></param>
</member>
<member name="M:Netron.Lithium.GraphAbstract.DepthFirstTraversal(Netron.Lithium.IVisitor,Netron.Lithium.ShapeBase)">
<summary>
DFT of the (sub)graph starting from the given shape
</summary>
<param name="visitor">an IVisitor object</param>
<param name="shape">the shape to start the visiting process from</param>
</member>
<member name="M:Netron.Lithium.GraphAbstract.DepthFirstTraversal(Netron.Lithium.IVisitor)">
<summary>
DFT of the diagram starting from the root
</summary>
<param name="visitor"></param>
</member>
<member name="P:Netron.Lithium.GraphAbstract.Root">
<summary>
Gets or sets the root of the diagram
</summary>
</member>
<member name="P:Netron.Lithium.GraphAbstract.Description">
<summary>
The description of the graph
</summary>
</member>
<member name="P:Netron.Lithium.GraphAbstract.Shapes">
<summary>
Gets or sets the shape collection
</summary>
</member>
<member name="P:Netron.Lithium.GraphAbstract.Connections">
<summary>
Gets or sets the connection collection of the control
</summary>
</member>
<member name="T:Netron.Lithium.Proxy">
<summary>
Simple proxy class for the control to display only specific properties.
Not as sophisticated as the property-bag of the full Netron-control
but does the job in this simple context.
</summary>
</member>
<member name="M:Netron.Lithium.Proxy.#ctor(Netron.Lithium.LithiumControl)">
<summary>
Default ctor
</summary>
<param name="site"></param>
</member>
<member name="P:Netron.Lithium.Proxy.Site">
<summary>
Gets or sets the reference to the control instance
</summary>
</member>
<member name="P:Netron.Lithium.Proxy.BackColor">
<summary>
Gets or sets the backcolor
</summary>
</member>
<member name="P:Netron.Lithium.Proxy.BranchHeight">
<summary>
Gets or set the branch height
</summary>
</member>
<member name="P:Netron.Lithium.Proxy.WordSpacing">
<summary>
Gets or sets the spacing between the nodes
</summary>
</member>
<member name="P:Netron.Lithium.Proxy.Description">
<summary>
Gets or sets the description of the diagram
</summary>
</member>
<member name="P:Netron.Lithium.Proxy.ConnectionType">
<summary>
Gets or sets the global connection type
</summary>
</member>
</members>
</doc>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -