You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
1.5 KiB

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <toolkit:Popup xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
  5. x:Class="CircleViewerMaui.Popups.NewInvite"
  6. Size="300,100">
  7. <VerticalStackLayout VerticalOptions="Center">
  8. <Grid Margin="10,10,10,10">
  9. <Grid.RowDefinitions>
  10. <RowDefinition Height="*" />
  11. <RowDefinition Height="*" />
  12. <RowDefinition Height="*" />
  13. </Grid.RowDefinitions>
  14. <Grid.ColumnDefinitions>
  15. <ColumnDefinition Width="*" />
  16. <ColumnDefinition Width="*" />
  17. </Grid.ColumnDefinitions>
  18. <Label Grid.Row="0" Grid.Column ="0" Text="Invite code:" TextColor="Purple" HorizontalTextAlignment="End" />
  19. <Label Grid.Row="0" Grid.Column ="1" x:Name="lblInviteCode" Text="" TextColor="Purple" HorizontalTextAlignment="Center"/>
  20. <Label Grid.Row="1" Grid.Column ="0" Text="Authorization code:" TextColor="Purple" HorizontalTextAlignment="End" />
  21. <Label Grid.Row="1" Grid.Column ="1" x:Name="lblAuthCode" Text="" TextColor="Purple" HorizontalTextAlignment="Center"/>
  22. <Button Grid.Row="2" Grid.ColumnSpan="2" Text="OK" Clicked="OnOKButtonClicked" HorizontalOptions="Center" />
  23. </Grid>
  24. </VerticalStackLayout>
  25. </toolkit:Popup>