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.

74 lines
2.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.Favoris"
Title="Favoris"
BackgroundColor="#26B4BE">
<VerticalStackLayout>
<ImageButton Source="logoapp.png"
BorderColor="Black"
BorderWidth="2"
Clicked="BackHome"
MaximumHeightRequest="150"/>
<Grid Margin="0,50,0,0">
<Grid.RowDefinitions>
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Frame Grid.Column="0">
<Image Source="pc3.png"
HeightRequest="200"
/>
</Frame>
<Frame Grid.Column="1" >
<Image Source="pc3.png"
HeightRequest="200"
/>
</Frame>
<Frame Grid.Column="2" >
<Image Source="pc3.png"
HeightRequest="200"
/>
</Frame>
<Frame Grid.Column="3">
<Image Source="pc3.png"
HeightRequest="200"/>
</Frame>
<Frame Grid.Column="4">
<Image Source="pc3.png"
HeightRequest="200"/>
</Frame>
<Frame Grid.Column="5">
<Image Source="pc3.png"
HeightRequest="200"/>
</Frame>
</Grid>
<Button
BackgroundColor="DimGrey"
Clicked="BackHome"
HorizontalOptions="Center"
Margin="0,75"
Text="Home"
TextColor="Snow"
x:Name="FavToHome"/>
</VerticalStackLayout>
</ContentPage>