Class TreeViewDescriptor
Provides a description of a hierarchical items source.
Inheritance
Namespace: Telerik.Maui.Controls.TreeView
Assembly: Telerik.Maui.Controls.dll
Syntax
public class TreeViewDescriptor : BindableObject
Constructors
TreeViewDescriptor()
Declaration
public TreeViewDescriptor()
Fields
DisplayMemberPathProperty
Identifies the Display
Declaration
public static readonly BindableProperty DisplayMemberPathProperty
Field Value
Microsoft.
|
IdentityMemberPathProperty
Identifies the Identity
Declaration
public static readonly BindableProperty IdentityMemberPathProperty
Field Value
Microsoft.
|
ItemsSourcePathProperty
Identifies the Items
Declaration
public static readonly BindableProperty ItemsSourcePathProperty
Field Value
Microsoft.
|
ItemStyleProperty
Identifies the Item
Declaration
public static readonly BindableProperty ItemStyleProperty
Field Value
Microsoft.
|
ItemTemplateProperty
Identifies the Item
Declaration
public static readonly BindableProperty ItemTemplateProperty
Field Value
Microsoft.
|
TargetTypeProperty
Identifies the Target
Declaration
public static readonly BindableProperty TargetTypeProperty
Field Value
Microsoft.
|
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
public string DisplayMemberPath { get; set; }
Property Value
System.
|
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
public string IdentityMemberPath { get; set; }
Property Value
System.
|
ItemsSourcePath
Gets or sets the path to the child items source of the data item.
Declaration
public string ItemsSourcePath { get; set; }
Property Value
System.
|
ItemStyle
Gets or sets the Microsoft.
Declaration
public Style ItemStyle { get; set; }
Property Value
Microsoft.
|
ItemTemplate
Gets or sets the Microsoft.
Declaration
public DataTemplate ItemTemplate { get; set; }
Property Value
Microsoft.
|
TargetType
Gets or sets the System.
Declaration
public Type TargetType { get; set; }
Property Value
System.
|