SfBusyIndicator is not animated in current versions on startup of an app.
When the app window is displayed the BusyIndicator is shown but not animated.
I only get the animation to work if I toggle the "isBusy" parameter off and on after the window is loaded.
i.e. listen to a Key event and toggle the "isBusy" parameter off and on. Then the animation works, but NOT on first startup when "isBusy" is set in Xaml.
I have this problem with versions: 15.3.0.26 and 15.2.0.46.
In version 15.2.0.43 the animation is working correctly.
I'm using Visual Studio 2017 (15.3.0)
Code Used:
<Window x:Class="MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfApp2"
xmlns:Notification="clr-namespace:Syncfusion.Windows.Controls.Notification;assembly=Syncfusion.SfBusyIndicator.WPF"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Grid>
<Notification:SfBusyIndicator/>
Grid>
Window>