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.
35 lines
1.5 KiB
35 lines
1.5 KiB
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:Class="MonApplication.MainPage">
|
|
<Grid Background="LightBlue">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/> <!-- Ligne pour le titre -->
|
|
<RowDefinition Height="*"/> <!-- Ligne pour le contenu défilable -->
|
|
</Grid.RowDefinitions>
|
|
|
|
<!-- Titre -->
|
|
<TextBlock Text="Ma Page" FontSize="20" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
|
|
|
<!-- Contenu défilable -->
|
|
<ScrollViewer Grid.Row="1">
|
|
<StackPanel Orientation="Horizontal">
|
|
<StackPanel>
|
|
<Button Click="Button_Click">
|
|
<Image Source="image1.jpg" Width="100" Height="100"/>
|
|
</Button>
|
|
<Button Click="Button_Click">
|
|
<Image Source="image2.jpg" Width="100" Height="100"/>
|
|
</Button>
|
|
<Button Click="Button_Click">
|
|
<Image Source="image3.jpg" Width="100" Height="100"/>
|
|
</Button>
|
|
</StackPanel>
|
|
<StackPanel>
|
|
<TextBlock Text="Description de l'image 1" FontSize="16"/>
|
|
<TextBlock Text="Description de l'image 2" FontSize="16"/>
|
|
<TextBlock Text="Description de l'image 3" FontSize="16"/>
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</ScrollViewer>
|
|
</Grid>
|
|
</Page> |