-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathAppLoadingView.xaml
24 lines (21 loc) · 1.11 KB
/
AppLoadingView.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. -->
<Page x:Class="CommunityToolkit.App.Shared.AppLoadingView"
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:local="using:CommunityToolkit.App.Shared"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"
mc:Ignorable="d">
<Grid>
<StackPanel HorizontalAlignment="Center"
VerticalAlignment="Center"
Spacing="10">
<ProgressRing Width="50"
Height="50"
IsActive="{x:Bind IsLoading, Mode=OneWay}" />
<TextBlock FontSize="18"
Text="{x:Bind LoadingMessage, Mode=OneWay}" />
</StackPanel>
</Grid>
</Page>