📄 doc.xml
字号:
<member name="M:Netron.Lithium.GraphSerializer.Serialize(System.Xml.XmlWriter)">
<summary>
Serializes the given graph to xml
</summary>
</member>
<member name="M:Netron.Lithium.GraphSerializer.Deserialize(System.Xml.XmlReader)">
<summary>
Deserializes the graph's xml
</summary>
<returns></returns>
</member>
<member name="M:Netron.Lithium.GraphSerializer.Deserialize(Netron.Lithium.GraphType)">
<summary>
Deserializes the graphtype
</summary>
<param name="g">the graphtype which acts as an intermediate storage between XML and the GraphAbstract
</param>
<returns></returns>
</member>
<member name="M:Netron.Lithium.GraphSerializer.SerializeNode(Netron.Lithium.ShapeBase)">
<summary>
Serializes the given shape to xml
</summary>
<param name="s"></param>
<returns></returns>
</member>
<member name="M:Netron.Lithium.GraphSerializer.SerializeEdge(Netron.Lithium.Connection)">
<summary>
Serializes a diagram edge
</summary>
<param name="c"></param>
<returns></returns>
</member>
<member name="M:Netron.Lithium.GraphSerializer.FormatID(Netron.Lithium.Entity)">
<summary>
Returns the UID in string format of the given entity
</summary>
<param name="e">an Entity object</param>
<returns>the UID as string</returns>
</member>
<member name="M:Netron.Lithium.GraphSerializer.DataTypesFromAttributes(System.Collections.Hashtable)">
<summary>
Converts the set of key/Values to a DataType array
</summary>
<param name="attributes">an Hastable of key/value pairs</param>
<returns>An array of DataTypes </returns>
</member>
<member name="M:Netron.Lithium.GraphSerializer.GetTypeQualifiedName(System.Object)">
<summary>
Returns qualified type name of o
</summary>
<param name="o"></param>
<returns></returns>
</member>
<member name="M:Netron.Lithium.GraphSerializer.GetTypeQualifiedName(System.Type)">
<summary>
Creates the name of a type qualified by the display name of its assembly.
</summary>
<param name="t"></param>
<returns></returns>
</member>
<member name="T:Netron.Lithium.GraphType">
<summary>
This is the root of the XML serialization class.
It acts as a kind of proxy class between the XML and the actual GraphAbstract.
</summary>
</member>
<member name="P:Netron.Lithium.GraphType.Description">
<summary>
Gets or sets the description of the diagram
</summary>
</member>
<member name="P:Netron.Lithium.GraphType.Nodes">
<summary>
Gets or sets the node collection
</summary>
</member>
<member name="P:Netron.Lithium.GraphType.Edges">
<summary>
Gets or sets the edge collection
</summary>
</member>
<member name="P:Netron.Lithium.GraphType.ID">
<summary>
Gets or sets the id
</summary>
</member>
<member name="T:Netron.Lithium.NodeType">
<summary>
The proxy class between the shape and the serialized XML
</summary>
</member>
<member name="P:Netron.Lithium.NodeType.Items">
<summary>
Generic collection of properties
</summary>
</member>
<member name="P:Netron.Lithium.NodeType.ID">
<summary>
The Uid of the shape
</summary>
</member>
<member name="P:Netron.Lithium.NodeType.Type">
<summary>
The Uid of the shape
</summary>
</member>
<member name="T:Netron.Lithium.ParentChild">
<summary>
Utility class to speed up the deserialization of connections
</summary>
</member>
<member name="M:Netron.Lithium.ParentChild.#ctor(Netron.Lithium.ShapeBase,System.String)">
<summary>
Default ctor
</summary>
<param name="child"></param>
<param name="parent"></param>
</member>
<member name="F:Netron.Lithium.ParentChild.Parent">
<summary>
Gets or sets the parent in this relation
</summary>
</member>
<member name="F:Netron.Lithium.ParentChild.ChildShape">
<summary>
Gets or sets the child in this relation
</summary>
</member>
<member name="T:Netron.Lithium.ParentChildCollection">
<summary>
STC of ParentChild collection
</summary>
</member>
<member name="M:Netron.Lithium.ParentChildCollection.Add(Netron.Lithium.ParentChild)">
<summary>
Adds an item to the collection
</summary>
<param name="pc">a ParentChild object</param>
<returns></returns>
</member>
<member name="P:Netron.Lithium.ParentChildCollection.Item(System.Int32)">
<summary>
integer indexer
</summary>
</member>
<member name="T:Netron.Lithium.OvalShape">
<summary>
A simple oval shape
</summary>
</member>
<member name="T:Netron.Lithium.ShapeBase">
<summary>
Base class for shapes
</summary>
</member>
<member name="T:Netron.Lithium.Entity">
<summary>
Abstract base class for every object part of the diagram
</summary>
</member>
<member name="F:Netron.Lithium.Entity.hovered">
<summary>
tells whether the current entity is hovered by the mouse
</summary>
</member>
<member name="F:Netron.Lithium.Entity.site">
<summary>
the control to which the eneity belongs
</summary>
</member>
<member name="F:Netron.Lithium.Entity.isSelected">
<summary>
tells whether the entity is selected
</summary>
</member>
<member name="F:Netron.Lithium.Entity.font">
<summary>
Default font for drawing text
</summary>
</member>
<member name="F:Netron.Lithium.Entity.blackPen">
<summary>
Default black pen
</summary>
</member>
<member name="F:Netron.Lithium.Entity.redPen">
<summary>
a red pen
</summary>
</member>
<member name="F:Netron.Lithium.Entity.thickPen">
<summary>
a thicker version of the black pen
</summary>
</member>
<member name="F:Netron.Lithium.Entity.uid">
<summary>
the unique identifier
</summary>
</member>
<member name="F:Netron.Lithium.Entity.pen">
<summary>
whatever pen you use instead of the black one
</summary>
</member>
<member name="F:Netron.Lithium.Entity.visible">
<summary>
the visibility bit
</summary>
</member>
<member name="M:Netron.Lithium.Entity.#ctor">
<summary>
Default ctor
</summary>
</member>
<member name="M:Netron.Lithium.Entity.#ctor(Netron.Lithium.LithiumControl)">
<summary>
Ctor with the site of the entity
</summary>
<param name="site"></param>
</member>
<member name="M:Netron.Lithium.Entity.Paint(System.Drawing.Graphics)">
<summary>
Paints the entity on the control
</summary>
<param name="g">the graphics object to paint on</param>
</member>
<member name="M:Netron.Lithium.Entity.Hit(System.Drawing.Point)">
<summary>
Tests whether the shape is hit by the mouse
</summary>
<param name="p"></param>
<returns></returns>
</member>
<member name="M:Netron.Lithium.Entity.Invalidate">
<summary>
Invalidates the entity
</summary>
</member>
<member name="M:Netron.Lithium.Entity.Move(System.Drawing.Point)">
<summary>
Moves the entity on the canvas
</summary>
<param name="p">the shifting vector, not an absolute position!</param>
</member>
<member name="P:Netron.Lithium.Entity.IsSelected">
<summary>
Gets or sets whether the entity is selected
</summary>
</member>
<member name="P:Netron.Lithium.Entity.Site">
<summary>
Gets or sets the site of the entity
</summary>
</member>
<member name="P:Netron.Lithium.Entity.UID">
<summary>
The globally unique identifier of the entity.
Mostly useful for serialization.
</summary>
</member>
<member name="P:Netron.Lithium.Entity.Font">
<summary>
The font used for drawing the text (if any)
</summary>
</member>
<member name="F:Netron.Lithium.ShapeBase.rectangle">
<summary>
the rectangle on which any shape lives
</summary>
</member>
<member name="F:Netron.Lithium.ShapeBase.shapeColor">
<summary>
the backcolor of the shapes
</summary>
</member>
<member name="F:Netron.Lithium.ShapeBase.shapeBrush">
<summary>
the brush corresponding to the backcolor
</summary>
</member>
<member name="F:Netron.Lithium.ShapeBase.text">
<summary>
the text on the shape
</summary>
</member>
<member name="F:Netron.Lithium.ShapeBase.isRoot">
<summary>
whether this shape if the root
</summary>
</member>
<member name="F:Netron.Lithium.ShapeBase.childNodes">
<summary>
the child nodes collection
</summary>
</member>
<member name="F:Netron.Lithium.ShapeBase.pickup">
<summary>
used to drag child nodes
</summary>
</member>
<member name="F:Netron.Lithium.ShapeBase.parentNode">
<summary>
points to the unique parent of this shape, unless it's the root and then Null
</summary>
</member>
<member name="F:Netron.Lithium.ShapeBase.expanded">
<summary>
whether the shape is expanded
If expanded, all the child nodes will have visible=true and vice versa
</summary>
</member>
<member name="F:Netron.Lithium.ShapeBase.connection">
<summary>
this is the unique link to the parent unless this shape is the root
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -