New to Telerik UI for .NET MAUIStart a free 30-day trial

A control that emphasizes changes from the current item to another item in a collection of items. This control also incorporates buttons to enable the end user to navigate between the next and/or previous items.

Definition

Namespace:Telerik.Maui.Controls.SlideView

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public class SlideViewIndicator : RadContentView, IRadContentView, IContentView, IView, IElement, ITransform, IPadding, ICrossPlatformLayout

Inheritance: objectRadContentViewSlideViewIndicator

Implements: IContentViewICrossPlatformLayoutIElementIPaddingIRadContentViewITransformIView...

Inherited Members RadContentView.ActualStyleClassPropertyRadContentView.OnChildAdded(Element)RadContentView.OnChildRemoved(Element, int)RadContentView.OnBindingContextChanged()RadContentView.OnHandlerChanged()

Constructors

Initializes a new instance of the SlideViewIndicator class.

C#
public SlideViewIndicator()

Fields

Identifies the AnimationDuration property.

C#
public static readonly BindableProperty AnimationDurationProperty

AnimationEasingProperty

BindableProperty

Identifies the AnimationEasing property.

C#
public static readonly BindableProperty AnimationEasingProperty

ControlTemplateProperty

BindableProperty

Identifies the ControlTemplate property.

C#
public static readonly BindableProperty ControlTemplateProperty

CurrentIndexProperty

BindableProperty

Identifies the CurrentIndex property.

C#
public static readonly BindableProperty CurrentIndexProperty

HasLoopingProperty

BindableProperty

Identifies the HasLooping property.

C#
public static readonly BindableProperty HasLoopingProperty

ItemsSourceProperty

BindableProperty

Identifies the ItemsSource property.

C#
public static readonly BindableProperty ItemsSourceProperty

MaxVisibleItemsProperty

BindableProperty

Identifies the MaxVisibleItems property.

C#
public static readonly BindableProperty MaxVisibleItemsProperty

Identifies the NavigateOnItemTap property.

C#
public static readonly BindableProperty NavigateOnItemTapProperty

Identifies the NavigateToNextItemCommand property.

C#
public static readonly BindableProperty NavigateToNextItemCommandProperty

Identifies the NavigateToPreviousItemCommand property.

C#
public static readonly BindableProperty NavigateToPreviousItemCommandProperty

Identifies the NavigationButtonsVisibility property.

C#
public static readonly BindableProperty NavigationButtonsVisibilityProperty

OrientationProperty

BindableProperty

Identifies the Orientation property.

C#
public static readonly BindableProperty OrientationProperty

Properties

Gets or sets the duration in milliseconds of the animation that is run when the current index changes.

C#
public int AnimationDuration { get; set; }

Gets or sets the Easing of the animation that is run when the current index changes.

C#
public Easing AnimationEasing { get; set; }

ControlTemplate

ControlTemplate

Gets or sets the ControlTemplate which describes the visual structure of the control.

C#
public ControlTemplate ControlTemplate { get; set; }

Gets or sets the index of the current item.

C#
public int CurrentIndex { get; set; }

Gets or sets a value that indicates whether the navigation commands can navigate from first to last and from last to first items.

C#
public bool HasLooping { get; set; }

Gets or sets the relevant items.

C#
public IList ItemsSource { get; set; }

Gets or sets a value indicating the maximum number of items to be displayed.

C#
public int MaxVisibleItems { get; set; }

Gets or sets a value indicating whether tapping on an item will update the CurrentIndex and navigation will follow.

C#
public bool NavigateOnItemTap { get; set; }

Gets a command that handles navigation to the next item. If the HasLooping property is set to true and the current item is the last item, then navigation to the first item can happen.

C#
public ICommand NavigateToNextItemCommand { get; }

Gets a command that handles navigation to the previous item. If the HasLooping property is set to true and the current item is the first item, then navigation to the last item can happen.

C#
public ICommand NavigateToPreviousItemCommand { get; }

Gets or sets a value that controls the visibility of the navigation buttons.

C#
public ButtonVisibility NavigationButtonsVisibility { get; set; }

Gets or sets the orientation of the control.

C#
public Orientation Orientation { get; set; }