Contents
- Determinate
- Indeterminate
Having trouble getting help?
Contact Support
Contact Support
States in .NET MAUI Circular ProgressBar (SfCircularProgressBar)
Configure the states of the circular progress bar control depending on the usage.
Determinate
This is the default state. Use it when the progress estimation is known.
Indeterminate
By enabling the IsIndeterminate
property, the state of the circular progress bar can be changed to indeterminate when the progress cannot be estimated or is not being calculated. It can be combined with a determinate mode to know that the application estimates progress before the actual progress starts.
<progressBar:SfCircularProgressBar IsIndeterminate="True"/>
SfCircularProgressBar circularProgressBar = new SfCircularProgressBar { IsIndeterminate = true };
this.Content = circularProgressBar;
NOTE
Refer to our .NET MAUI Circular ProgressBar feature tour page for its groundbreaking feature representations. Also explore our .NET MAUI Circular ProgressBar example that shows how to configure a SfCircularProgressBar in .NET MAUI.