merge dbCamille db
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
commit
a69e5fc9d2
@ -0,0 +1,38 @@
|
|||||||
|
<?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>
|
@ -0,0 +1,17 @@
|
|||||||
|
using CoreLibrary.Events;
|
||||||
|
using CoreLibrary.Manager;
|
||||||
|
|
||||||
|
namespace MauiSpark.Pages;
|
||||||
|
|
||||||
|
public partial class Plateau : ContentPage
|
||||||
|
{
|
||||||
|
public Plateau()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void NouveauTour(Object? sender, NouveauTourEventArgs e)
|
||||||
|
{
|
||||||
|
BindingContext = e;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue