Mise à jour de 'XMLFile1.xml'
continuous-integration/drone/push Build is passing Details

master
Leon ENAULT 2 years ago
parent 70dcf72b23
commit aa87b1b4e7

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