LoadingPage.xaml
1 <?xml version="1.0" encoding="utf-8" ?> 2 <Page 3 x:Class="Microsoft.CmdPal.UI.Pages.LoadingPage" 4 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 5 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 6 xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 7 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 8 mc:Ignorable="d"> 9 10 <Grid> 11 <ProgressRing 12 Width="36" 13 Height="36" 14 HorizontalAlignment="Center" 15 VerticalAlignment="Center" 16 IsIndeterminate="True" /> 17 </Grid> 18 </Page>