|
|
|
@ -1,11 +1,52 @@
|
|
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
|
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
|
x:Class="ParionsCuite.Views.Invite.Inviter">
|
|
|
|
|
<VerticalStackLayout>
|
|
|
|
|
<Label
|
|
|
|
|
Text="Welcome to .NET MAUI!"
|
|
|
|
|
VerticalOptions="Center"
|
|
|
|
|
HorizontalOptions="Center" />
|
|
|
|
|
<!--Grid menu-->
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="300"/>
|
|
|
|
|
<ColumnDefinition Width="300"/>
|
|
|
|
|
<ColumnDefinition Width="300"/>
|
|
|
|
|
<ColumnDefinition Width="300"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Button Text="Invité" BackgroundColor="Grey"/>
|
|
|
|
|
<Button Text="Participant" Grid.Column="1"/>
|
|
|
|
|
<Button Text="Pari" Grid.Column="2"/>
|
|
|
|
|
<Button Text="Information" Grid.Column="3"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="200"/>
|
|
|
|
|
<ColumnDefinition Width="200"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<!--Input des noms et prenoms-->
|
|
|
|
|
<StackLayout Grid.Column="0">
|
|
|
|
|
<Entry Text="Entrer nom invité" HorizontalOptions="End" Margin="20" />
|
|
|
|
|
<Entry Text="Entrer prénom invité" HorizontalOptions="End" Margin="20" />
|
|
|
|
|
<Button Text="Ajouter" HorizontalOptions="Center" Margin="20"/>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
<!--Grid prenom et nom + output -->
|
|
|
|
|
<StackLayout Grid.Column="1">
|
|
|
|
|
<Grid Grid.Column="1" Margin="30">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="200" />
|
|
|
|
|
<ColumnDefinition Width="200" />
|
|
|
|
|
<ColumnDefinition Width="auto" />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="40"/>
|
|
|
|
|
<RowDefinition Height="40"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Label Text="Tony" Grid.Column="1" Grid.Row="0" />
|
|
|
|
|
<Label Text="Fages" Grid.Column="0" Grid.Row="0"/>
|
|
|
|
|
<Label Text="Thomas" Grid.Column="1" Grid.Row="1"/>
|
|
|
|
|
<Label Text="Muzard" Grid.Row="1"/>
|
|
|
|
|
<Button Text="-" Grid.Row="1" Grid.Column="2"/>
|
|
|
|
|
<Button Text="-" Grid.Column="2"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
</Grid>
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
</ContentView>
|
|
|
|
|