Class
TreeViewDescriptor

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:

cs-api-definition
public class TreeViewDescriptor : BindableObject

Inheritance: objectTreeViewDescriptor

Constructors

TreeViewDescriptor()

Declaration

cs-api-definition
public TreeViewDescriptor()

Fields

DisplayMemberPathProperty

Identifies the DisplayMemberPath property.

Declaration

cs-api-definition
public static readonly BindableProperty DisplayMemberPathProperty

Field Value

BindableProperty

IdentityMemberPathProperty

Identifies the IdentityMemberPath property.

Declaration

cs-api-definition
public static readonly BindableProperty IdentityMemberPathProperty

Field Value

BindableProperty

ItemStyleProperty

Identifies the ItemStyle property.

Declaration

cs-api-definition
public static readonly BindableProperty ItemStyleProperty

Field Value

BindableProperty

ItemTemplateProperty

Identifies the ItemTemplate property.

Declaration

cs-api-definition
public static readonly BindableProperty ItemTemplateProperty

Field Value

BindableProperty

ItemsSourcePathProperty

Identifies the ItemsSourcePath property.

Declaration

cs-api-definition
public static readonly BindableProperty ItemsSourcePathProperty

Field Value

BindableProperty

TargetTypeProperty

Identifies the TargetType property.

Declaration

cs-api-definition
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.

Declaration

cs-api-definition
public string DisplayMemberPath { get; set; }

Property Value

string

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.

Declaration

cs-api-definition
public string IdentityMemberPath { get; set; }

Property Value

string

ItemStyle

Gets or sets the Style to be applied to the respective type of items. The target type of this Style is TreeViewItemView.

Declaration

cs-api-definition
public Style ItemStyle { get; set; }

Property Value

Style

ItemTemplate

Gets or sets the DataTemplate to be applied to the respective type of items.

Declaration

cs-api-definition
public DataTemplate ItemTemplate { get; set; }

Property Value

DataTemplate

ItemsSourcePath

Gets or sets the path to the child items source of the data item.

Declaration

cs-api-definition
public string ItemsSourcePath { get; set; }

Property Value

string

TargetType

Gets or sets the Type of a data item.

Declaration

cs-api-definition
public Type TargetType { get; set; }

Property Value

Type