Hello, I am trying to get a BusyIndicator to overlay the content of my screen.
When executing long DB Queries, I want to display a busy indicator.
To display the indicator I am attempting to use an absolute layout tag, but it is only shifting the rest of the content to below the content that it being waited on.
This is the code I am using for the display
<ScrollView AbsoluteLayout.LayoutBounds="0, 0, 1, 1" AbsoluteLayout.LayoutFlags="All">
<StackLayout HorizontalOptions="Fill" Orientation="Vertical">
<busyindicator:SfBusyIndicator x:Name="busyindicator"
AbsoluteLayout.LayoutBounds="0.5,0.5,0.5,0.5"
AbsoluteLayout.LayoutFlags="All"
AnimationType="DoubleCircle"
IsBusy="{Binding Path=IsBusy, Mode=TwoWay}"
IsEnabled="{Binding Path=IsBusy, Mode=TwoWay}"
IsVisible="{Binding Path=IsBusy, Mode=TwoWay}"
ViewBoxHeight="150"
ViewBoxWidth="150" />
<!-- KIWI Need to get GetStringResource working in here. -->
<Label x:Name="lblNoInventory"
FontSize="18"
HorizontalOptions="CenterAndExpand"
HorizontalTextAlignment="Center"
IsVisible="{Binding Converter={StaticResource VisibleFromCount}, Path=Bullets}"
Style="{StaticResource Key=BorderLabel}"
Text="{x:Static resx:Resources.labelSuppliesBulletsNoInventory}"
VerticalOptions="Start" />
<datagrid:SfDataGrid x:Name="dgBullets"
AbsoluteLayout.LayoutBounds="0,0,1,1"
AbsoluteLayout.LayoutFlags="None"
AllowEditing="True"
AllowMultiSorting="True"
AllowSorting="True"
AutoGenerateColumns="False"
ColumnSizer="Star"
ItemsSource="{Binding Path=Bullets}"
VerticalOptions="FillAndExpand" />
</StackLayout>
</ScrollView>
The control is just pushing the other content down, and not overlaying the controls.
I have tried to post this multiple times, but the site will not let me post it, so I am trying to post this in multiple parts now.
This of course would be part one.

