Class TreeListViewRow
A control that represents the row of a RadTreeListView.
Not to be used separately outside the TreeList.
Inherited Members
Namespace: Telerik.Windows.Controls.TreeListView
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class TreeListViewRow : GridViewRow, IRowItem, IHorizontallyScrollable, ILayoutObserver, IInputElement, IRegisterBinding, IScrollContentElement, IVirtualizedContainer, IWeakEventListener<NotifyCollectionChangedEventArgs>
Constructors
TreeListViewRow()
Properties
Items
Gets the items.
Declaration
public HierarchicalChildCollectionView Items { get; }
Property Value
HierarchicalChildCollectionView
The items. |
Level
Gets the level of the current item in the hierarchy.
Declaration
public int Level { get; set; }
Property Value
System.Int32
|
ParentRow
Gets the row that acts as a parent to this row. May me null if the this row is a root.
Declaration
public TreeListViewRow ParentRow { get; }
Property Value
TreeListViewRow
|
Methods
OnApplyTemplate()
OnCreateAutomationPeer()
Returns class-specific System.Windows.Automation.Peers.AutomationPeer implementations for the Windows Presentation Foundation (WPF) infrastructure.
Declaration
protected override AutomationPeer OnCreateAutomationPeer()
Returns
System.Windows.Automation.Peers.AutomationPeer
The type-specific System.Windows.Automation.Peers.AutomationPeer implementation. |
Overrides
OnIsExpandedChanged(Boolean, Boolean)
Called when the GridViewRow's IsExpanded property changes.
Declaration
protected override void OnIsExpandedChanged(bool oldValue, bool newValue)
Parameters
System.Boolean
oldValue
The old value of the IsExpanded property. |
System.Boolean
newValue
The new value of the IsExpanded property. |
Overrides
OnItemsChanged(Object, NotifyCollectionChangedEventArgs)
This method is called when the Items of the given TreeListViewRow change. The base implementation should be called if it is inherited.
Declaration
protected virtual void OnItemsChanged(object sender, NotifyCollectionChangedEventArgs e)
Parameters
System.Object
sender
The Items collection of the TreeListViewRow. |
System.Collections.Specialized.NotifyCollectionChangedEventArgs
e
Arguments describing the collection change. |