ISelector
Interface
An interface that is implemented by classes which are responsible for selecting items among their child elements.
Definition
Namespace:Telerik.Windows.Controls.Primitives
Assembly:Telerik.Windows.Controls.dll
Syntax:
C#
public interface ISelector
Derived Classes:
Properties
Gets the index of the selected item. Returns -1 if the selection is empty.
C#
int SelectedIndex { get; }
Gets the item which is currently selected.
C#
object SelectedItem { get; }
Gets the value for the selected item.
C#
object SelectedValue { get; }
Events
SelectionChanged
SelectionChangedEventHandler
Occurs when the selection of a Telerik.Windows.Controls.Primitives.ISelector object changes.
C#
event SelectionChangedEventHandler SelectionChanged