Table of Contents

Class SlideBoxSelectionChangedEventArgs

Namespace
Nalu
Assembly
Nalu.Maui.Layouts.dll

Event data for SelectedIndexChanged.

public sealed class SlideBoxSelectionChangedEventArgs : EventArgs
Inheritance
SlideBoxSelectionChangedEventArgs
Inherited Members

Constructors

SlideBoxSelectionChangedEventArgs(int, int, SlideBoxItem?, SlideBoxItem?)

Event data for SelectedIndexChanged.

public SlideBoxSelectionChangedEventArgs(int oldIndex, int newIndex, SlideBoxItem? oldItem, SlideBoxItem? newItem)

Parameters

oldIndex int
newIndex int
oldItem SlideBoxItem
newItem SlideBoxItem

Properties

NewIndex

Gets the newly selected index (-1 when none).

public int NewIndex { get; }

Property Value

int

NewItem

Gets the newly selected item.

public SlideBoxItem? NewItem { get; }

Property Value

SlideBoxItem

OldIndex

Gets the previously selected index (-1 when none).

public int OldIndex { get; }

Property Value

int

OldItem

Gets the previously selected item.

public SlideBoxItem? OldItem { get; }

Property Value

SlideBoxItem