|
|
|
@ -5,6 +5,34 @@
|
|
|
|
|
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>
|