C# 클래스 Nexus.UI.Controls.XmlTreeNode

A node in an XmlTreeView.
상속: System.Windows.Forms.TreeNode
파일 보기 프로젝트 열기: NexusMods/NexusModManager-4.5 1 사용 예제들

공개 메소드들

메소드 설명
LoadChildren ( ) : void

Creates child tree nodes for each child of the XML node represented by this tree node.

XmlTreeNode ( XmlNode p_xndXmlNode ) : System.Windows.Forms

A simple constructor that initializes the object with the given values.

XmlTreeNode ( XmlNode p_xndXmlNode, bool p_booHideChildren ) : System.Windows.Forms

A simple constructor that initializes the object with the given values.

비공개 메소드들

메소드 설명
OwnerDocument_NodeChanged ( object sender, XmlNodeChangedEventArgs e ) : void

Handles the XmlDocument.NodeChanged event of the document being represented by the tree view to which this node belongs.

This reformats the tree node to reflect the changes.

OwnerDocument_NodeInserted ( object sender, XmlNodeChangedEventArgs e ) : void

Handles the XmlDocument.NodeInserted event of the document being represented by the tree view to which this node belongs.

This reformats the tree node if the XML node that was inserted is a child of the XML node represented by this node.

OwnerDocument_NodeRemoved ( object sender, XmlNodeChangedEventArgs e ) : void

Handles the XmlDocument.NodeRemoved event of the document being represented by the tree view to which this node belongs.

This reformats the tree node if the XML node that was removed was a child of the XML node represented by this node.

메소드 상세

LoadChildren() 공개 메소드

Creates child tree nodes for each child of the XML node represented by this tree node.
public LoadChildren ( ) : void
리턴 void

XmlTreeNode() 공개 메소드

A simple constructor that initializes the object with the given values.
public XmlTreeNode ( XmlNode p_xndXmlNode ) : System.Windows.Forms
p_xndXmlNode System.Xml.XmlNode The XML node to represent with this tree node.
리턴 System.Windows.Forms

XmlTreeNode() 공개 메소드

A simple constructor that initializes the object with the given values.
public XmlTreeNode ( XmlNode p_xndXmlNode, bool p_booHideChildren ) : System.Windows.Forms
p_xndXmlNode System.Xml.XmlNode The XML node to represent with this tree node.
p_booHideChildren bool Whether the node should generate child tree nodes for /// the children of the XML node being represented by this tree node.
리턴 System.Windows.Forms