|
|
|
@ -1,38 +1,40 @@
|
|
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
|
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
|
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
|
x:Class="MauiApp1.NewContent1">
|
|
|
|
|
<VerticalStackLayout>
|
|
|
|
|
<Label
|
|
|
|
|
Text="Welcome to .NET MAUI!"
|
|
|
|
|
VerticalOptions="Center"
|
|
|
|
|
HorizontalOptions="Center" />
|
|
|
|
|
<Grid Background="LightBlue">
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<!-- Ligne pour le titre -->
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
<!-- Ligne pour le contenu défilable -->
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
x:Class="MauiApp1.NewPage1"
|
|
|
|
|
Title="NewPage1">
|
|
|
|
|
|
|
|
|
|
<!-- Titre -->
|
|
|
|
|
<Label Text="Ma Page" FontSize="20" HorizontalTextAlignment="Center" VerticalTextAlignment="Center"/>
|
|
|
|
|
<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="Welcome to .NET MAUI!"
|
|
|
|
|
VerticalOptions="Center"
|
|
|
|
|
HorizontalOptions="Center" />
|
|
|
|
|
|
|
|
|
|
<!-- Contenu défilable -->
|
|
|
|
|
<ScrollView Grid.Row="1">
|
|
|
|
|
<StackLayout Orientation="Horizontal">
|
|
|
|
|
<StackLayout>
|
|
|
|
|
<ImageButton Source="image1.jpg" WidthRequest="100" HeightRequest="100" Clicked="ImageButton_Clicked"/>
|
|
|
|
|
<ImageButton Source="image2.jpg" WidthRequest="100" HeightRequest="100" Clicked="ImageButton_Clicked"/>
|
|
|
|
|
<ImageButton Source="image3.jpg" WidthRequest="100" HeightRequest="100" Clicked="ImageButton_Clicked"/>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
<StackLayout>
|
|
|
|
|
<Label Text="Description de l'image 1" FontSize="16"/>
|
|
|
|
|
<Label Text="Description de l'image 2" FontSize="16"/>
|
|
|
|
|
<Label Text="Description de l'image 3" FontSize="16"/>
|
|
|
|
|
<!-- Titre -->
|
|
|
|
|
<Label Text="Home" FontSize="20" HorizontalTextAlignment="Center" VerticalTextAlignment="Center"/>
|
|
|
|
|
|
|
|
|
|
<!-- Contenu défilable -->
|
|
|
|
|
<ScrollView Grid.Row="1">
|
|
|
|
|
<StackLayout Orientation="Horizontal">
|
|
|
|
|
<StackLayout>
|
|
|
|
|
<Image Source="oip.jpg" WidthRequest="100" HeightRequest="100"/>
|
|
|
|
|
<Image Source="ppp.jpg" WidthRequest="100" HeightRequest="100"/>
|
|
|
|
|
<Image Source="tele.jpg" WidthRequest="100" HeightRequest="100"/>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
<StackLayout>
|
|
|
|
|
<Label Text="Description de l'image 1" FontSize="16"/>
|
|
|
|
|
<Label Text="Description de l'image 2" FontSize="16"/>
|
|
|
|
|
<Label Text="Description de l'image 3" FontSize="16"/>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
</ScrollView>
|
|
|
|
|
</Grid>
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
</ContentView>
|
|
|
|
|
</ScrollView>
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
</Grid>
|
|
|
|
|
</ContentPage>
|