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.
SAE-S2.01_MAUI/XMLFile1.xml

42 lines
1.8 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="MauiApp1.NewPage1"
Title="NewPage1">
<Grid Background="Bisque">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<!-- Ligne pour le titre -->
<RowDefinition Height="*"/>
<!-- Ligne pour le contenu défilable -->
</Grid.RowDefinitions>
<VerticalStackLayout>
<Label
Text="Bienvenue sur l'app Loup-Garou"
VerticalOptions="Center"
HorizontalOptions="Center"/>
<!-- Titre -->
<Label Text="Home" FontSize="20" HorizontalTextAlignment="Center" VerticalTextAlignment="Center"/>
<!-- Contenu défilable -->
<ScrollView Grid.Row="1">
<StackLayout Orientation="Vertical">
<StackLayout>
<Image Source="oip.jpg" WidthRequest="100" HeightRequest="100"/>
<Label Text="Description de l'image 1" FontSize="16"/>
</StackLayout>
<StackLayout>
<Image Source="ppp.jpg" WidthRequest="100" HeightRequest="100"/>
<Label Text="Description de l'image 2" FontSize="16"/>
</StackLayout>
<StackLayout>
<Image Source="tele.jpg" WidthRequest="100" HeightRequest="100"/>
<Label Text="Description de l'image 3" FontSize="16"/>
</StackLayout>
</StackLayout>
</ScrollView>
</VerticalStackLayout>
</Grid>
</ContentPage>