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.
sae201_qwirkle/Qwirkle/Qwirkle/Pages/Gameboard.xaml

39 lines
1.2 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="Qwirkle.Pages.Gameboard"
xmlns:controls="clr-namespace:Qwirkle.Views"
Title="Gameboard">
<VerticalStackLayout MaximumHeightRequest="1080"
MaximumWidthRequest="1920">
<Label
Text="Test"/>
<Rectangle Fill="White" Stroke="CornflowerBlue" StrokeThickness="10" RadiusX="20"
HeightRequest="500"
WidthRequest="700" />
<!-- Test grille dans la grille -->
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width= "1000" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="3*" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
</Grid>
<Grid ColumnDefinitions="1000" RowDefinitions="*, 3, *">
</Grid>
</VerticalStackLayout>
</ContentPage>