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;