You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.7 KiB
38 lines
1.7 KiB
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="MauiSpark.Pages.Plateau"
|
|
Title="Plateau">
|
|
<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> |