SlideViewIndicator
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:
public class SlideViewIndicator : RadContentView, IRadContentView, IContentView, IView, IElement, ITransform, IPadding, ICrossPlatformLayout
Inheritance: objectRadContentViewSlideViewIndicator
Implements:
Inherited Members
Constructors
Initializes a new instance of the SlideViewIndicator class.
public SlideViewIndicator()
Fields
AnimationDurationProperty
BindableProperty
Identifies the AnimationDuration property.
public static readonly BindableProperty AnimationDurationProperty
AnimationEasingProperty
BindableProperty
Identifies the AnimationEasing property.
public static readonly BindableProperty AnimationEasingProperty
ControlTemplateProperty
BindableProperty
Identifies the ControlTemplate property.
public static readonly BindableProperty ControlTemplateProperty
CurrentIndexProperty
BindableProperty
Identifies the CurrentIndex property.
public static readonly BindableProperty CurrentIndexProperty
HasLoopingProperty
BindableProperty
Identifies the HasLooping property.
public static readonly BindableProperty HasLoopingProperty
ItemsSourceProperty
BindableProperty
Identifies the ItemsSource property.
public static readonly BindableProperty ItemsSourceProperty
MaxVisibleItemsProperty
BindableProperty
Identifies the MaxVisibleItems property.
public static readonly BindableProperty MaxVisibleItemsProperty
NavigateOnItemTapProperty
BindableProperty
Identifies the NavigateOnItemTap property.
public static readonly BindableProperty NavigateOnItemTapProperty
NavigateToNextItemCommandProperty
BindableProperty
Identifies the NavigateToNextItemCommand property.
public static readonly BindableProperty NavigateToNextItemCommandProperty
NavigateToPreviousItemCommandProperty
BindableProperty
Identifies the NavigateToPreviousItemCommand property.
public static readonly BindableProperty NavigateToPreviousItemCommandProperty
NavigationButtonsVisibilityProperty
BindableProperty
Identifies the NavigationButtonsVisibility property.
public static readonly BindableProperty NavigationButtonsVisibilityProperty
OrientationProperty
BindableProperty
Identifies the Orientation property.
public static readonly BindableProperty OrientationProperty
Properties
Gets or sets the duration in milliseconds of the animation that is run when the current index changes.
public int AnimationDuration { get; set; }
AnimationEasing
Easing
Gets or sets the Easing of the animation that is run when the current index changes.
public Easing AnimationEasing { get; set; }
ControlTemplate
ControlTemplate
Gets or sets the ControlTemplate which describes the visual structure of the control.
public ControlTemplate ControlTemplate { get; set; }
Gets or sets the index of the current item.
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.
public bool HasLooping { get; set; }
Gets or sets the relevant items.
public IList ItemsSource { get; set; }
Gets or sets a value indicating the maximum number of items to be displayed.
public int MaxVisibleItems { get; set; }
Gets or sets a value indicating whether tapping on an item will update the CurrentIndex and navigation will follow.
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.
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.
public ICommand NavigateToPreviousItemCommand { get; }
Gets or sets a value that controls the visibility of the navigation buttons.
public ButtonVisibility NavigationButtonsVisibility { get; set; }
Gets or sets the orientation of the control.
public Orientation Orientation { get; set; }