Hello, I have a problem with the BusyIndicator I am using in my application. Every now and then it loads the Animation in the wrong position which means it is inside the Header text. I have a zipfile attached with two images, one how it should look and the other with the wrong placement. This is its code:
<notification:SfBusyIndicator
IsBusy="{x:Bind ViewModel.IsBusy, Mode=OneWay}"
AnimationType="GPS"
Header="Fetching Data..."
HorizontalAlignment="Center"
VerticalAlignment="Center"
ViewboxHeight="150"
ViewboxWidth="150">
<notification:SfBusyIndicator.HeaderTemplate>
<DataTemplate>
<Grid HorizontalAlignment="Center">
<TextBlock Text="{Binding}" FontSize="25" FontWeight="Bold"/>
</Grid>
</DataTemplate>
</notification:SfBusyIndicator.HeaderTemplate>
</notification:SfBusyIndicator>
Usually it jumps into the right position after a moment but it looks weird and a little unprofessional. Any ideas on how I can fix this?
Attachment:
BusyIndicator_6f2795b.rar