New to Telerik UI for WPFStart a free 30-day trial

ISelector

Interface

An interface that is implemented by classes which are responsible for selecting items among their child elements.

Definition

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