|
|
|
@ -1,17 +1,16 @@
|
|
|
|
|
<?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"
|
|
|
|
|
xmlns:system="clr-namespace:System;assembly=mscorlib"
|
|
|
|
|
x:Class="ParionsCuite.Views.Invite.Inviter">
|
|
|
|
|
<VerticalStackLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<VerticalStackLayout >
|
|
|
|
|
<!--Grid Pincipale-->
|
|
|
|
|
<Grid ColumnDefinitions="8*,*,10*">
|
|
|
|
|
|
|
|
|
|
<!--Input des noms et prenoms-->
|
|
|
|
|
<StackLayout Grid.Column="0" >
|
|
|
|
|
<Entry Placeholder="Entrer nom invité" x:Name="nomEditor" HorizontalOptions="End" FontSize="Large" Margin="0,20,0,0" />
|
|
|
|
|
<Entry Placeholder="Entrer prénom invité" x:Name="prenomEditor" HorizontalOptions="End" FontSize="Large" Margin="0,20,0,0" />
|
|
|
|
|
<Entry Placeholder="Entrer prénom invité" x:Name="prenomEditor" HorizontalOptions="End" FontSize="Large" Margin="0,20,0,0" />
|
|
|
|
|
<Button Text="Ajouter" Clicked="AddInvitelist" HorizontalOptions="Center" Margin="0,20,0,0"/>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
|
|
|
|
@ -30,8 +29,8 @@
|
|
|
|
|
<Label Text="Prenom" Grid.Column="1" Grid.Row="0" BackgroundColor="LightGrey" FontSize="Large"/>
|
|
|
|
|
<Label Text="Nom" Grid.Column="0" Grid.Row="0" BackgroundColor="LightGrey" FontSize="Large"/>
|
|
|
|
|
<Label Grid.Column="2" Grid.Row="0" BackgroundColor="LightGrey" FontSize="Large"/>
|
|
|
|
|
<Label Text="Thomas" Grid.Column="1" Grid.Row="1" FontSize="Large"/>
|
|
|
|
|
<Label Text="Muzard" Grid.Row="1" FontSize="Large"/>
|
|
|
|
|
<Label Text="{Binding Nom}" Grid.Column="1" Grid.Row="1" FontSize="Large"/>
|
|
|
|
|
<Label Text="{Binding Prenom}" Grid.Row="1" FontSize="Large"/>
|
|
|
|
|
<Button Text="-" Grid.Row="1" Grid.Column="2"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|