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.

83 lines
3.1 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="CanYouBuildIt.Views.Acceuil"
Title="Can You Build It">
<VerticalStackLayout Margin="0,0,0,0">
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition Height="1"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Image Grid.Row="0" Grid.Column="0"
Source="pc1.png"
SemanticProperties.Description="Cute dot net bot waving hi to you!"
HeightRequest="200"
/>
<Image Grid.Row="0" Grid.Column="2"
Source="pc3.png"
SemanticProperties.Description="Cute dot net bot waving hi to you!"
HeightRequest="200"
/>
<Image Grid.Row="0" Grid.Column="4"
Source="pc3.png"
SemanticProperties.Description="Cute dot net bot waving hi to you!"
HeightRequest="200"
/>
<Image Grid.Row="1" Grid.Column="1"
Source="pc2.png"
SemanticProperties.Description="Cute dot net bot waving hi to you!"
HeightRequest="200"
/>
<Image Grid.Row="1" Grid.Column="3"
Source="pc4.png"
SemanticProperties.Description="Cute dot net bot waving hi to you!"
HeightRequest="200"
/>
<Image Grid.Row="1" Grid.Column="5"
Source="pc2.png"
SemanticProperties.Description="Cute dot net bot waving hi to you!"
HeightRequest="200"
/>
</Grid>
<Grid Margin="0,250">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition Height="1"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Button Grid.Row="0" Grid.Column="1"
x:Name="Config"
Text="Configurateur"
SemanticProperties.Hint="Counts the number of times you click"
HorizontalOptions="Center" />
<Button Grid.Row="0" Grid.Column="4"
x:Name="Fav"
Text="Favoris"
SemanticProperties.Hint="Counts the number of times you click"
HorizontalOptions="Center" />
</Grid>
</VerticalStackLayout>
</ContentPage>