-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathLoadingPage.xaml
More file actions
24 lines (22 loc) · 847 Bytes
/
LoadingPage.xaml
File metadata and controls
24 lines (22 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Page
x:Class="WordWeaver.LoadingPage"
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:WordWeaver"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:muxc="using:Microsoft.UI.Xaml.Controls"
xmlns:sk="using:SimpleKit.WindowsRuntime.UI.Controls"
xmlns:tenmica="using:TenMica"
d:Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"
Loaded="OnPageLoaded"
mc:Ignorable="d">
<Grid>
<sk:TitleBar
x:Name="CustomTitleBar"
Height="40"
VerticalAlignment="Top"
Canvas.ZIndex="1" />
<muxc:ProgressRing Width="48" Height="48" />
</Grid>
</Page>