RadControls for WPF

Represents an item in the RadTreeView control.
Represents an item in the RadTreeView control.

Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.Navigation (in Telerik.Windows.Controls.Navigation.dll) Version: 2013.2.611.40

Syntax

C#
public class RadTreeViewItem : EditableHeaderedItemsControl, 
	IProvideStackingSize, ICachable, ICommandSource
Visual Basic
Public Class RadTreeViewItem _
	Inherits EditableHeaderedItemsControl _
	Implements IProvideStackingSize, ICachable, ICommandSource

Remarks

The RadTreeView control is made up of items. Items which are immediate children of the TreeView are root items. Items which are children of root items are child items.

An item usually stores data in two properties, the Header property and the Tag property. The value of the Header property is displayed in the RadTreeView control, and the Tag property is used to store additional data.

To create tree items, use one of the following methods:

  • Use declarative syntax to define items inline in your page.
  • Data bind the RadTreeView control to a data source.

Inheritance Hierarchy

System..::..Object
  System.Windows.Threading..::..DispatcherObject
    System.Windows..::..DependencyObject
      System.Windows.Media..::..Visual
        System.Windows..::..UIElement
          System.Windows..::..FrameworkElement
            System.Windows.Controls..::..Control
              System.Windows.Controls..::..ItemsControl
                System.Windows.Controls..::..HeaderedItemsControl
                  Telerik.Windows.Controls.TreeView..::..EditableHeaderedItemsControl
                    Telerik.Windows.Controls..::..RadTreeViewItem
                      Telerik.Windows.Controls..::..RadPanelBarItem

See Also