|
|
|
@ -27,7 +27,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Première colonne -->
|
|
|
|
|
<Grid Grid.Column="0" BackgroundColor="LightGray" x:Name="GridMenu">
|
|
|
|
|
<Grid Grid.Column="0" BackgroundColor="LightGray">
|
|
|
|
|
<StackLayout>
|
|
|
|
|
<Button Text="Groupe 1"
|
|
|
|
|
VerticalOptions="Center"
|
|
|
|
@ -35,7 +35,7 @@
|
|
|
|
|
|
|
|
|
|
<Button Text="+"
|
|
|
|
|
VerticalOptions="Center"
|
|
|
|
|
HorizontalOptions="Center" Clicked="Button_Clicked"/>
|
|
|
|
|
HorizontalOptions="Center"/>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
@ -48,19 +48,20 @@
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
|
|
|
|
<!-- 1er ligne -->
|
|
|
|
|
<!--Grid menu-->
|
|
|
|
|
<Grid Grid.Row="0" Margin="20" ColumnDefinitions="*,*,*,*">
|
|
|
|
|
<Button Text="Invité" Clicked="InviteView" />
|
|
|
|
|
<Button Text="Participant" Grid.Column="1" Clicked="ParticipantView"/>
|
|
|
|
|
<Button Text="Pari" Grid.Column="2" BackgroundColor="Grey" Clicked="PariView"/>
|
|
|
|
|
<Button Text="Information" Grid.Column="3" Clicked="InfoView" />
|
|
|
|
|
<Grid Grid.Row="0" Margin="20,0,20,0" HorizontalOptions="Center" >
|
|
|
|
|
<HorizontalStackLayout>
|
|
|
|
|
<Button Text="Invité" Margin="0,0,20,0"/>
|
|
|
|
|
<Button Text="Participant" Grid.Column="1" Margin="0,0,20,0"/>
|
|
|
|
|
<Button Text="Pari" Grid.Column="2" BackgroundColor="Grey" Margin="0,0,20,0"/>
|
|
|
|
|
<Button Text="Information" Grid.Column="3" Margin="0,0,20,0" Clicked="VueInfo"/>
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 2e ligne -->
|
|
|
|
|
<Grid Grid.Row="1" >
|
|
|
|
|
<ContentView x:Name="changeButton">
|
|
|
|
|
<views:Accueil/>
|
|
|
|
|
<Grid Grid.Row="1">
|
|
|
|
|
<ContentView>
|
|
|
|
|
<nourriture:Nourriture/>
|
|
|
|
|
</ContentView>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Grid>
|
|
|
|
|