|
|
|
@ -4,7 +4,7 @@
|
|
|
|
|
x:Class="ParionsCuite.Views.Invite.Inviter">
|
|
|
|
|
<VerticalStackLayout>
|
|
|
|
|
<!--Grid menu-->
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid Margin="20">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="300"/>
|
|
|
|
|
<ColumnDefinition Width="300"/>
|
|
|
|
@ -16,35 +16,35 @@
|
|
|
|
|
<Button Text="Pari" Grid.Column="2"/>
|
|
|
|
|
<Button Text="Information" Grid.Column="3"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid Margin="200,0,0,0">
|
|
|
|
|
<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.Column="0" >
|
|
|
|
|
<Entry Text="Entrer nom invité" HorizontalOptions="End" FontSize="Large" Margin="0,20,0,0" />
|
|
|
|
|
<Entry Text="Entrer prénom invité" HorizontalOptions="End" FontSize="Large" Margin="0,20,0,0" />
|
|
|
|
|
<Button Text="Ajouter" HorizontalOptions="Center" Margin="0,20,0,0"/>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
<!--Grid prenom et nom + output -->
|
|
|
|
|
<StackLayout Grid.Column="1">
|
|
|
|
|
<StackLayout Grid.Column="1" Margin="200,0,0,0">
|
|
|
|
|
<Grid Grid.Column="1" Margin="30">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="200" />
|
|
|
|
|
<ColumnDefinition Width="200" />
|
|
|
|
|
<ColumnDefinition Width="auto" />
|
|
|
|
|
<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"/>
|
|
|
|
|
<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"/>
|
|
|
|
|
<Button Text="-" Grid.Row="1" Grid.Column="2"/>
|
|
|
|
|
<Button Text="-" Grid.Column="2"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
</Grid>
|
|
|
|
|