|
|
|
@ -6,10 +6,10 @@
|
|
|
|
|
<!--Grid menu-->
|
|
|
|
|
<Grid Margin="20">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="300"/>
|
|
|
|
|
<ColumnDefinition Width="300"/>
|
|
|
|
|
<ColumnDefinition Width="300"/>
|
|
|
|
|
<ColumnDefinition Width="300"/>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Button Text="Invité" />
|
|
|
|
|
<Button Text="Participant" Grid.Column="1"/>
|
|
|
|
@ -18,43 +18,32 @@
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
<!--Grid Participation-->
|
|
|
|
|
<Grid Margin="200,30,0,0">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="300"/>
|
|
|
|
|
<ColumnDefinition Width="300"/>
|
|
|
|
|
<ColumnDefinition Width="300"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Grid ColumnDefinitions="*,*,*">
|
|
|
|
|
<Button Text="Nourriture" />
|
|
|
|
|
<Button Text="Boisson" Grid.Column="1" BackgroundColor="Grey"/>
|
|
|
|
|
<Button Text="Autre" Grid.Column="2" />
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
<!--Grid Pincipale-->
|
|
|
|
|
<Grid Margin="200,30,0,0">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="200"/>
|
|
|
|
|
<ColumnDefinition Width="200"/>
|
|
|
|
|
<ColumnDefinition Width="200"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Grid ColumnDefinitions="*,*,*">
|
|
|
|
|
|
|
|
|
|
<!--Input des boissons et quantité-->
|
|
|
|
|
<StackLayout Grid.Column="0" >
|
|
|
|
|
<Entry Text="Entrer boisson" HorizontalOptions="End" FontSize="Large" Margin="0,20,0,0" />
|
|
|
|
|
<Entry Text="Entrer quantité" HorizontalOptions="End" FontSize="Large" Margin="0,20,0,0" />
|
|
|
|
|
<Button Text="Ajouter" HorizontalOptions="Center" Margin="0,20,0,0"/>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
<!--Input des boissons et quantité-->
|
|
|
|
|
<StackLayout Grid.Column="0" >
|
|
|
|
|
<Entry Text="Entrer boisson" HorizontalOptions="End" FontSize="Large" Margin="0,20,0,0" />
|
|
|
|
|
<Entry Text="Entrer quantité" HorizontalOptions="End" FontSize="Large" Margin="0,20,0,0" />
|
|
|
|
|
<Button Text="Ajouter" HorizontalOptions="Center" Margin="0,20,0,0"/>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
|
|
|
|
|
<!--Grid quantité et boisson + output -->
|
|
|
|
|
<StackLayout Grid.Column="1" Margin="200,0,0,0">
|
|
|
|
|
<Grid Grid.Column="1" Margin="30">
|
|
|
|
|
<Grid Grid.Column="2" Margin="30">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="200" />
|
|
|
|
|
<ColumnDefinition Width="200" />
|
|
|
|
|
<ColumnDefinition Width="auto"/>
|
|
|
|
|
<ColumnDefinition Width="2*" />
|
|
|
|
|
<ColumnDefinition Width="2*" />
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="40"/>
|
|
|
|
|
<RowDefinition Height="40"/>
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
|
|
|
|
<!--Header Grille quantité+boisson-->
|
|
|
|
@ -68,7 +57,6 @@
|
|
|
|
|
<Button Text="-" Grid.Row="1" Grid.Column="2"/>
|
|
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
</Grid>
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
</ContentView>
|
|
|
|
|