How to change indicator color in .NET MAUI Busy Indicator (SfBusyIndicator)?
The .NET MAUI Busy Indicator provides a visual indication of ongoing activity within an application. You can change the color of the Busy Indicator by using the IndicatorColor property.
XAML
<ContentPage.Content>
<busyIndicator:SfBusyIndicator x:Name="busyIndicator"
IsRunning="True"
Title="Searching..."
IndicatorColor="Red"/>
</ContentPage.Content>
C#
SfBusyIndicator busyIndicator = new SfBusyIndicator();
busyIndicator.IsRunning = true;
busyIndicator.Title = "Searching…";
busyIndicator.IndicatorColor = Colors.Red;
Output
Conclusion
I hope you enjoyed learning how to change indicator color in .NET MAUI Busy Indicator (SfBusyIndicator).
You can refer to our .NET MAUI Busy Indicator’s feature tour page to learn about its other groundbreaking feature representations. Explore our .NET MAUI Busy Indicator documentation to understand how to present and manipulate data.
For current customers, you can check out our .NET MAUI components from the License and Downloads page. If you are new to Syncfusion®, you can try our 30-day free trial to check out our .NET MAUI Busy Indicator and other .NET MAUI components.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!