WaitingView.xaml 828 B

12345678910111213141516
  1. <Page
  2. x:Class="YJMPD_UWP.Views.WaitingView"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:local="using:YJMPD_UWP.Views"
  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. <RelativePanel Style="{StaticResource BaseRelativePanel}">
  10. <StackPanel RelativePanel.AlignHorizontalCenterWithPanel="True" RelativePanel.AlignVerticalCenterWithPanel="True" Margin="0,-50,0,0">
  11. <ProgressRing Width="80" Height="80" HorizontalAlignment="Center" IsActive="True" />
  12. <TextBlock Text="Waiting on other players..." FontSize="20" Margin="0,20,0,0"/>
  13. </StackPanel>
  14. </RelativePanel>
  15. </Page>