C# 클래스 ComponentFactory.Krypton.Toolkit.KryptonTreeNode

상속: System.Windows.Forms.TreeNode
파일 보기 프로젝트 열기: ComponentFactory/Krypton 1 사용 예제들

Private Properties

프로퍼티 타입 설명
Init void
ShouldSerializeLongForeColor bool
ShouldSerializeLongNodeFont bool
ShouldSerializeLongText bool

공개 메소드들

메소드 설명
KryptonTreeNode ( ) : System

Initialize a new instance of the KryptonTreeNode class.

KryptonTreeNode ( string text ) : System

Initializes a new instance of the System.Windows.Forms.TreeNode class with the specified label text.

KryptonTreeNode ( string text, TreeNode children ) : System

Initializes a new instance of the System.Windows.Forms.TreeNode class with the specified label text and child tree nodes.

KryptonTreeNode ( string text, int imageIndex, int selectedImageIndex ) : System

Initializes a new instance of the System.Windows.Forms.TreeNode class with the specified label text and images to display when the tree node is in a selected and unselected state.

KryptonTreeNode ( string text, int imageIndex, int selectedImageIndex, TreeNode children ) : System

Initializes a new instance of the System.Windows.Forms.TreeNode class with the specified label text, child tree nodes, and images to display when the tree node is in a selected and unselected state.

보호된 메소드들

메소드 설명
OnPropertyChanged ( PropertyChangedEventArgs e ) : void

Raises the PropertyChanged event.

비공개 메소드들

메소드 설명
Init ( ) : void
ShouldSerializeLongForeColor ( ) : bool
ShouldSerializeLongNodeFont ( ) : bool
ShouldSerializeLongText ( ) : bool

메소드 상세

KryptonTreeNode() 공개 메소드

Initialize a new instance of the KryptonTreeNode class.
public KryptonTreeNode ( ) : System
리턴 System

KryptonTreeNode() 공개 메소드

Initializes a new instance of the System.Windows.Forms.TreeNode class with the specified label text.
public KryptonTreeNode ( string text ) : System
text string The label System.Windows.Forms.TreeNode.Text of the new tree node.
리턴 System

KryptonTreeNode() 공개 메소드

Initializes a new instance of the System.Windows.Forms.TreeNode class with the specified label text and child tree nodes.
public KryptonTreeNode ( string text, TreeNode children ) : System
text string The label System.Windows.Forms.TreeNode.Text of the new tree node.
children System.Windows.Forms.TreeNode An array of child System.Windows.Forms.TreeNode objects.
리턴 System

KryptonTreeNode() 공개 메소드

Initializes a new instance of the System.Windows.Forms.TreeNode class with the specified label text and images to display when the tree node is in a selected and unselected state.
public KryptonTreeNode ( string text, int imageIndex, int selectedImageIndex ) : System
text string The label System.Windows.Forms.TreeNode.Text of the new tree node.
imageIndex int The index value of System.Drawing.Image to display when the tree node is unselected.
selectedImageIndex int The index value of System.Drawing.Image to display when the tree node is selected.
리턴 System

KryptonTreeNode() 공개 메소드

Initializes a new instance of the System.Windows.Forms.TreeNode class with the specified label text, child tree nodes, and images to display when the tree node is in a selected and unselected state.
public KryptonTreeNode ( string text, int imageIndex, int selectedImageIndex, TreeNode children ) : System
text string The label System.Windows.Forms.TreeNode.Text of the new tree node.
imageIndex int The index value of System.Drawing.Image to display when the tree node is unselected.
selectedImageIndex int The index value of System.Drawing.Image to display when the tree node is selected.
children System.Windows.Forms.TreeNode An array of child System.Windows.Forms.TreeNode objects.
리턴 System

OnPropertyChanged() 보호된 메소드

Raises the PropertyChanged event.
protected OnPropertyChanged ( PropertyChangedEventArgs e ) : void
e System.ComponentModel.PropertyChangedEventArgs A PropertyChangedEventArgs containing the event data.
리턴 void