Class RadRowItem
This class is a base class for all UI Rows.
Inheritance
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Data.dll
Syntax
public class RadRowItem : ContentControl, IRowItem
Constructors
RadRowItem()
Declaration
public RadRowItem()
Fields
IsAlternatingProperty
Identifies the Is
Declaration
public static readonly DependencyProperty IsAlternatingProperty
Field Value
System.
|
IsCurrentChangedEvent
Identifies the Is
Declaration
public static readonly RoutedEvent IsCurrentChangedEvent
Field Value
System.
|
IsCurrentProperty
Identifies the Is
Declaration
public static readonly DependencyProperty IsCurrentProperty
Field Value
System.
|
IsSelectedProperty
Identifies the Is
Declaration
public static readonly DependencyProperty IsSelectedProperty
Field Value
System.
|
ItemProperty
The DependencyProperty for the Item property.
Declaration
public static readonly DependencyProperty ItemProperty
Field Value
System.
|
RowIndicatorVisibilityProperty
Identifies the Row
Declaration
public static readonly DependencyProperty RowIndicatorVisibilityProperty
Field Value
System.
|
SelectedEvent
Identifies the Selected routed event.
Declaration
public static readonly RoutedEvent SelectedEvent
Field Value
System.
|
UnselectedEvent
Identifies the Unselected routed event.
Declaration
public static readonly RoutedEvent UnselectedEvent
Field Value
System.
|
Properties
ActionOnLostFocus
Gets or sets the action on lost focus.
Declaration
public virtual ActionOnLostFocus ActionOnLostFocus { get; }
Property Value
Action The action on lost focus. |
IsAlternating
Gets or sets a value indicating whether this row is alternating.
Declaration
public bool IsAlternating { get; set; }
Property Value
System.
|
IsCurrent
Gets or sets a value indicating whether the Rad
Declaration
public bool IsCurrent { get; set; }
Property Value
System.
|
IsSelected
Gets or sets a value indicating whether the Rad
Declaration
public bool IsSelected { get; set; }
Property Value
System.
|
Item
The item that the row represents. This item is an entry in the list of items from the GridViewDataControl. From this item, cells are generated for each column in the GridViewDataControl.
Declaration
public object Item { get; set; }
Property Value
System.
|
RowIndicatorVisibility
Gets or sets the row indicator visibility.
Declaration
public Visibility RowIndicatorVisibility { get; set; }
Property Value
System. The row indicator visibility. |
Implements
Methods
CreateIndentItem()
Creates the item that fills in the indentation.
Declaration
public virtual ContentControl CreateIndentItem()
Returns
System.
|
Dispose()
Releases unmanaged and - optionally - managed resources.
Declaration
public virtual void Dispose()
Implements
IsSelectable()
Determines whether this instance is selectable.
Declaration
protected virtual bool IsSelectable()
Returns
System.
|
OnApplyTemplate()
Declaration
public override void OnApplyTemplate()
OnIsAlternatingChanged(Boolean, Boolean)
Called when IsAlternating property changes.
Declaration
protected virtual void OnIsAlternatingChanged(bool oldValue, bool newValue)
Parameters
System. New value. |
System. Old value. |
OnIsCurrentChanged(Boolean)
Called when the value of the IsCurrent property is changed.
Declaration
protected virtual void OnIsCurrentChanged(bool newValue)
Parameters
System.
|
OnItemChanged(Object, Object)
Called when the value of the Item property changes.
Declaration
protected virtual void OnItemChanged(object oldItem, object newItem)
Parameters
System. The old value of Item. |
System. The new value of Item. |
OnMouseEnter(MouseEventArgs)
Declaration
protected override void OnMouseEnter(MouseEventArgs e)
Parameters
System.
|
OnMouseMove(MouseEventArgs)
Declaration
protected override void OnMouseMove(MouseEventArgs e)
Parameters
System.
|
OnSelected(RadRoutedEventArgs)
Raises the Selected event.
Declaration
protected virtual void OnSelected(RadRoutedEventArgs e)
Parameters
Rad The System. |
OnUnselected(RadRoutedEventArgs)
Raises the Unselected event.
Declaration
protected virtual void OnUnselected(RadRoutedEventArgs e)
Parameters
Rad The System. |
SelectionPropertyChanged(Object, DependencyPropertyChangedEventArgs)
Called when the selection was changed.
Declaration
protected virtual void SelectionPropertyChanged(object sender, DependencyPropertyChangedEventArgs rowSelectionArgs)
Parameters
System. The sender. |
System. The System. |
Events
IsCurrentChanged
Occurs when Is
Declaration
public event RoutedEventHandler IsCurrentChanged
Event Type
System.
|
Selected
Occurs when Is
Declaration
public event RoutedEventHandler Selected
Event Type
System.
|
Unselected
Occurs when Is
Declaration
public event RoutedEventHandler Unselected
Event Type
System.
|
Explicit Interface Implementations
IRowItem.get_DataContext()
Declaration
object IRowItem.get_DataContext()
Returns
System.
|
Implements
IRowItem.set_DataContext(Object)
Declaration
void IRowItem.set_DataContext(object value)
Parameters
System.
|