New to Telerik UI for Xamarin? Download free 30-day trial

Indeterminate Mode

Telerik ProgressBar for Xamarin supports two modes of operation:

  • Determinate - aimed at scenarios in which the progress of an operation can be precisely measured.

  • Indeterminate - aimed at scenarios in which there is no way of determining the current progress of an operation.

Using the IsIndeterminate property(of type bool) you can specify whether the control is in Indeterminate mode or not. The default value is false.

ProgressBar Indeterminate support

Example with Indeterminate mode

The snippet below shows a simple RadLinearProgressBar definition with IsIndeterminate property set to True.

<telerikPrimitives:RadLinearProgressBar Value="25"
                                        IsIndeterminate="True"/>

In addition to this, you need to add the following namespace:

xmlns:telerikPrimitives="clr-namespace:Telerik.XamarinForms.Primitives;assembly=Telerik.XamarinForms.Primitives"

A sample Indeterminate Mode example can be found in the ProgressBar/Features folder of the SDK Samples Browser application.

See Also

In this article