Introducing the New WinUI Busy Indicator Control | Syncfusion Blogs
Live Chat Icon For mobile
Live Chat Icon
Popular Categories.NET  (173).NET Core  (29).NET MAUI  (203)Angular  (107)ASP.NET  (51)ASP.NET Core  (82)ASP.NET MVC  (89)Azure  (40)Black Friday Deal  (1)Blazor  (211)BoldSign  (13)DocIO  (24)Essential JS 2  (106)Essential Studio  (200)File Formats  (65)Flutter  (132)JavaScript  (219)Microsoft  (118)PDF  (81)Python  (1)React  (98)Streamlit  (1)Succinctly series  (131)Syncfusion  (897)TypeScript  (33)Uno Platform  (3)UWP  (4)Vue  (45)Webinar  (50)Windows Forms  (61)WinUI  (68)WPF  (157)Xamarin  (161)XlsIO  (35)Other CategoriesBarcode  (5)BI  (29)Bold BI  (8)Bold Reports  (2)Build conference  (8)Business intelligence  (55)Button  (4)C#  (146)Chart  (127)Cloud  (15)Company  (443)Dashboard  (8)Data Science  (3)Data Validation  (8)DataGrid  (63)Development  (618)Doc  (8)DockingManager  (1)eBook  (99)Enterprise  (22)Entity Framework  (5)Essential Tools  (14)Excel  (39)Extensions  (22)File Manager  (6)Gantt  (18)Gauge  (12)Git  (5)Grid  (31)HTML  (13)Installer  (2)Knockout  (2)Language  (1)LINQPad  (1)Linux  (2)M-Commerce  (1)Metro Studio  (11)Mobile  (501)Mobile MVC  (9)OLAP server  (1)Open source  (1)Orubase  (12)Partners  (21)PDF viewer  (42)Performance  (12)PHP  (2)PivotGrid  (4)Predictive Analytics  (6)Report Server  (3)Reporting  (10)Reporting / Back Office  (11)Rich Text Editor  (12)Road Map  (12)Scheduler  (52)Security  (3)SfDataGrid  (9)Silverlight  (21)Sneak Peek  (31)Solution Services  (4)Spreadsheet  (11)SQL  (10)Stock Chart  (1)Surface  (4)Tablets  (5)Theme  (12)Tips and Tricks  (112)UI  (381)Uncategorized  (68)Unix  (2)User interface  (68)Visual State Manager  (2)Visual Studio  (31)Visual Studio Code  (17)Web  (582)What's new  (323)Windows 8  (19)Windows App  (2)Windows Phone  (15)Windows Phone 7  (9)WinRT  (26)
Introducing the New WinUI Busy Indicator Control

Introducing the New WinUI Busy Indicator Control

We at Syncfusion are happy to announce the inclusion of the new WinUI Busy Indicator control in the 2022 Volume 3 release.

The WinUI Busy Indicator control is used to display a predefined animation when an operation runs in the background of an application and the user waits for its completion. It can be customized in terms of size, color, duration, and content.

Its key features are:

Let’s cover each briefly and see the steps to get started with the WinUI Busy Indicator control.

Animation types

It supports the following seven prebuilt animation types, and you can pick the one that satisfies your need:

  • Dotted Circle
  • Dotted Circular Fluent
  • Dotted Linear
  • Double Circle
  • Linear Box
  • Linear Oscillating Box
  • Single Circle

You can see each animation type in action in the following graphic.

Busy Indicator Animation Types
Busy Indicator Animation Types

Busy content

You can set a custom message that indicates the busy status of the control to users. You can also place the busy content at the top, bottom, left, or right of the Busy Indicator, as well as customize it using the DataTemplate support.

Refer to the following images.

Placing Busy Content at the Top of the WinUI Busy Indicator
Placing Busy Content at the Top of the WinUI Busy Indicator
Customizing the WinUI Busy Indicator’s Content with Template Support
Customizing the WinUI Busy Indicator’s Content with Template Support

Duration

The WinUI Busy Indicator control allows users to customize the animation speed with values ranging from 0 to 1.

Busy Indicator with Custom Duration
Busy Indicator with Custom Duration

Size

You can customize the size of the Busy Indicator with values ranging from 0 to 1.

Busy Indicator with Custom Size
Busy Indicator with Custom Size

Color

Also, customize the color of the indicator based on your requirements.

Busy Indicator with Custom Color
Busy Indicator with Custom Color

Getting started with the WinUI Busy Indicator control

Now that we’ve seen the features of the WinUI Busy Indicator control, let’s see the steps to get started with it.

Step 1: Create a WinUI application.

First, follow the guidelines in the Create your first WinUI 3 (Windows App SDK) project documentation to create a simple WinUI project.

Step 2: Add the Syncfusion.Notifications.WinUI NuGet package.

Then, install the latest Syncfusion.Notifications.WinUI NuGet package in your project from the NuGet Gallery or from the installed location, C:\Program Files (x86)\Syncfusion\Essential Studio\WinUI\xx.x.x.xx\NuGetPackages.

Note: xx.x.x.xx denotes the version of the installed Syncfusion WinUI Notifications package.

Step 3: Add the namespace.

Now, include the Syncfusion.UI.Xaml.Notifications namespace in your XAML file with the following code.

xmlns:syncfusion="using:Syncfusion.UI.Xaml.Notifications"

Step 4: Initialize the Busy Indicator control.

Finally, initialize the WinUI Busy Indicator control with the required animation type and content as shown in the following code example.

<Page
   x:Class="GettingStarted.MainPage"
     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
     xmlns:local="using:GettingStarted"
     xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
     xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
     xmlns:syncfusion="using:Syncfusion.UI.Xaml.Core"
     mc:Ignorable="d"
     Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
 
 <Grid>
  <syncfusion:SfBusyIndicator  IsActive="True"
                               AnimationType="DottedCircle"
                               BusyContent="Loading…" />
 </Grid>
 
</Page>

After executing the above code, we will have a page populated with the Busy Indicator control like in the following output image.

WinUI Busy Indicator Control
WinUI Busy Indicator Control

Conclusion

Thanks for reading! I hope you enjoyed learning about the new Syncfusion WinUI Busy Indicator control and its features available in our 2022 Volume 3 release. Also, check out our Release Notes and What’s New pages to see all the new updates in this release. Try them out and leave your feedback in the comments section below!

You can download and check out our WinUI demo app in the Microsoft Store.

For current customers, the new version is available for download from the License and Downloads page. If you are not yet a Syncfusion customer, you can try our 30-day free trial to check out our newest features.

You can also contact us through our support forums, support portal, or feedback portal. We are always happy to assist you!

Related blogs

Tags:

Share this post:

Popular Now

Be the first to get updates

Subscribe RSS feed

Be the first to get updates

Subscribe RSS feed