ClassTreeViewDescriptor
Provides a description of a hierarchical items source for the RadTreeView. You must set the TargetType property to the corresponding item type.
Definition
Namespace:Telerik.Maui.Controls.TreeView
Assembly:Telerik.Maui.Controls.dll
Syntax:
public class TreeViewDescriptor : BindableObject
Inheritance: objectTreeViewDescriptor
Constructors
TreeViewDescriptor()
Declaration
public TreeViewDescriptor()
Fields
DisplayMemberPathProperty
Identifies the DisplayMemberPath property.
Declaration
public static readonly BindableProperty DisplayMemberPathProperty
Field Value
BindableProperty
IdentityMemberPathProperty
Identifies the IdentityMemberPath property.
Declaration
public static readonly BindableProperty IdentityMemberPathProperty
Field Value
BindableProperty
ItemStyleProperty
Identifies the ItemStyle property.
Declaration
public static readonly BindableProperty ItemStyleProperty
Field Value
BindableProperty
ItemTemplateProperty
Identifies the ItemTemplate property.
Declaration
public static readonly BindableProperty ItemTemplateProperty
Field Value
BindableProperty
ItemsSourcePathProperty
Identifies the ItemsSourcePath property.
Declaration
public static readonly BindableProperty ItemsSourcePathProperty
Field Value
BindableProperty
TargetTypeProperty
Identifies the TargetType property.
Declaration
public static readonly BindableProperty TargetTypeProperty
Field Value
BindableProperty
Properties
DisplayMemberPath
Gets or sets the path to the display member of the data item. The display member is used to visualize the item on the screen. If the property is not specified, the entire item is used instead.
IdentityMemberPath
Gets or sets the path to the identity member of the data item. The identifier member is used to identify the item in the hierarchy. If the property is not specified, the entire item is used instead.
ItemStyle
Gets or sets the Style to be applied to the respective type of items. The target type of this Style is TreeViewItemView.
Declaration
public Style ItemStyle { get; set; }
Property Value
Style
ItemTemplate
Gets or sets the DataTemplate to be applied to the respective type of items.
Declaration
public DataTemplate ItemTemplate { get; set; }
Property Value
DataTemplate
ItemsSourcePath
Gets or sets the path to the child items source of the data item.
TargetType
Gets or sets the Type of a data item.