Interface ILoopingSelectorDataSource
Defines how the LoopingSelector communicates with data source.
Namespace: Syncfusion.UI.Xaml.Primitives
Assembly: Syncfusion.SfShared.UWP.dll
Syntax
[ClassReference(IsReviewed = false, ShouldInclude = false)]
public interface ILoopingSelectorDataSource
Properties
SelectedItem
Gets or sets the current selected item.
Declaration
object SelectedItem { get; set; }
Property Value
Type |
---|
System.Object |
Methods
GetNext(Object)
Get the next datum, relative to an existing datum.
Declaration
object GetNext(object relativeTo)
Parameters
Type | Name | Description |
---|---|---|
System.Object | relativeTo | relative value |
Returns
Type | Description |
---|---|
System.Object | returns next datum, relative to an existing datum. |
GetPrevious(Object)
Get the previous datum, relative to an existing datum.
Declaration
object GetPrevious(object relativeTo)
Parameters
Type | Name | Description |
---|---|---|
System.Object | relativeTo | relative value |
Returns
Type | Description |
---|---|
System.Object | returns previous datum, relative to an existing datum |
Events
SelectionChanged
Occurs when the selected item changed.
Declaration
event EventHandler<SelectionChangedEventArgs> SelectionChanged
Event Type
Type |
---|
System.EventHandler<Windows.UI.Xaml.Controls.SelectionChangedEventArgs> |