|
|
|
@ -3,9 +3,36 @@
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
|
x:Class="MauiSpark.Pages.Plateau"
|
|
|
|
|
Title="Plateau">
|
|
|
|
|
<VerticalStackLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
<Grid RowDefinitions="*" ColumnDefinitions="*, *">
|
|
|
|
|
<Grid RowDefinitions="*" ColumnDefinitions="*" Margin="50" BackgroundColor="Red">
|
|
|
|
|
<ListView ItemsSource="{Binding Partie.Regles.TourMaximum}">
|
|
|
|
|
<ListView.ItemTemplate>
|
|
|
|
|
<DataTemplate>
|
|
|
|
|
<ViewCell>
|
|
|
|
|
<Grid ColumnDefinitions="*, 5*" RowDefinitions="*">
|
|
|
|
|
<Label Grid.Column="0" Text="A" />
|
|
|
|
|
<Label Grid.Column="1" Text="B"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
</ViewCell>
|
|
|
|
|
</DataTemplate>
|
|
|
|
|
</ListView.ItemTemplate>
|
|
|
|
|
</ListView>
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
<Grid Grid.Column="1" RowDefinitions="*, 2*, *" ColumnDefinitions="*" Margin="50" BackgroundColor="Blue">
|
|
|
|
|
<Label Text="Joueur 1" VerticalOptions="Center" HorizontalOptions="Center"/>
|
|
|
|
|
|
|
|
|
|
<Grid Grid.Row="1" RowDefinitions="*, 2*" ColumnDefinitions="*" VerticalOptions="Center" HorizontalOptions="Center">
|
|
|
|
|
<Grid RowDefinitions="*" ColumnDefinitions="*, *, *, *, *, *">
|
|
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
<Grid Grid.Row="1" RowDefinitions="*, *" ColumnDefinitions="*, *, *">
|
|
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
<Label Grid.Row="2" Text="Coup 5" VerticalOptions="Center" HorizontalOptions="Center"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Grid>
|
|
|
|
|
</ContentPage>
|