Files
EmptyMauiApp/MauiApp/Controls/BusyContainer.xaml
2023-10-18 19:02:51 +02:00

30 lines
1.3 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
xmlns:controls="clr-namespace:MauiApp.Controls"
x:Class="MauiApp.Controls.BusyContainer"
x:DataType="controls:BusyContainer"
x:Name="busyContainer">
<ContentView.ControlTemplate>
<ControlTemplate>
<Grid>
<ContentPresenter
VerticalOptions="Fill"
HorizontalOptions="Fill" />
<BoxView
IsVisible="{Binding Source={x:Reference busyContainer}, Path=IsLoadingVisible}"
Background="{Binding Source={x:Reference busyContainer}, Path=BusyBackground}"
Opacity="{Binding Source={x:Reference busyContainer}, Path=BusyBackgroundOpacity}"/>
<ActivityIndicator
IsRunning="{Binding Source={x:Reference busyContainer}, Path=IsLoadingVisible}"
WidthRequest="50"
HeightRequest="50" />
</Grid>
</ControlTemplate>
</ContentView.ControlTemplate>
</ContentView>