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.
28 lines
1.5 KiB
28 lines
1.5 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<toolkit:Popup xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
|
|
x:Class="CircleViewerMaui.Popups.NewInvite"
|
|
Size="300,100">
|
|
|
|
|
|
<VerticalStackLayout VerticalOptions="Center">
|
|
<Grid Margin="10,10,10,10">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<Label Grid.Row="0" Grid.Column ="0" Text="Invite code:" TextColor="Purple" HorizontalTextAlignment="End" />
|
|
<Label Grid.Row="0" Grid.Column ="1" x:Name="lblInviteCode" Text="" TextColor="Purple" HorizontalTextAlignment="Center"/>
|
|
<Label Grid.Row="1" Grid.Column ="0" Text="Authorization code:" TextColor="Purple" HorizontalTextAlignment="End" />
|
|
<Label Grid.Row="1" Grid.Column ="1" x:Name="lblAuthCode" Text="" TextColor="Purple" HorizontalTextAlignment="Center"/>
|
|
<Button Grid.Row="2" Grid.ColumnSpan="2" Text="OK" Clicked="OnOKButtonClicked" HorizontalOptions="Center" />
|
|
</Grid>
|
|
</VerticalStackLayout>
|
|
|
|
</toolkit:Popup>
|