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.
52 lines
1.5 KiB
52 lines
1.5 KiB
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="MauiSpark.Pages.ConnexionPage"
|
|
xmlns:vues="clr-namespace:MauiSpark.Vues"
|
|
Title="Connexion">
|
|
|
|
<Grid
|
|
ColumnDefinitions="*"
|
|
RowDefinitions="auto, *, *">
|
|
|
|
<vues:TitreVue Texte="joueurs"/>
|
|
|
|
|
|
<VerticalStackLayout
|
|
Grid.Row="1"
|
|
VerticalOptions="Center">
|
|
|
|
<Grid
|
|
Margin="0, 50"
|
|
ColumnDefinitions="auto, *, 8*, *"
|
|
RowDefinitions="auto">
|
|
|
|
<Label
|
|
Text="{Binding}"
|
|
FontSize="Large"
|
|
Margin="50, 0, 0, 0"
|
|
VerticalOptions="Center"
|
|
HorizontalOptions="Center"/>
|
|
|
|
<Entry
|
|
x:Name="Nom"
|
|
Grid.Column="2"
|
|
FontSize="Medium"
|
|
Margin="50, 0"/>
|
|
</Grid>
|
|
</VerticalStackLayout>
|
|
|
|
<Grid Grid.Row="2" VerticalOptions="Center" RowDefinitions="*" ColumnDefinitions="*, *">
|
|
<Button
|
|
VerticalOptions="Center"
|
|
Text="Se connecter"
|
|
Clicked="QuandSeConnecterPresse"/>
|
|
|
|
<Button
|
|
Grid.Column="1"
|
|
VerticalOptions="Center"
|
|
Text="Robot"
|
|
Clicked="QuandRobotPresse"/>
|
|
</Grid>
|
|
</Grid>
|
|
</ContentPage> |