Fin de la page victoire
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
parent
2f571a940d
commit
ce11503157
@ -1,35 +0,0 @@
|
|||||||
<?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="MauiSpark.Pages.Victoire"
|
|
||||||
xmlns:pages="clr-namespace:MauiSpark.Pages"
|
|
||||||
xmlns:vues="clr-namespace:MauiSpark.Vues"
|
|
||||||
Title="Victoire">
|
|
||||||
|
|
||||||
<Grid
|
|
||||||
ColumnDefinitions="*"
|
|
||||||
RowDefinitions="*, auto, *">
|
|
||||||
|
|
||||||
<Grid
|
|
||||||
ColumnDefinitions="*, *, *"
|
|
||||||
RowDefinitions="*">
|
|
||||||
|
|
||||||
<vues:ImageResultatVue Image="{Binding [2]}" HorizontalOptions="Start"/>
|
|
||||||
|
|
||||||
<vues:TitreVue Texte="{Binding [0]}" Grid.Column="1"/>
|
|
||||||
|
|
||||||
<vues:ImageResultatVue Image="{Binding [2]}" Grid.Column="2" HorizontalOptions="End"/>
|
|
||||||
</Grid>
|
|
||||||
|
|
||||||
<Frame Grid.Row="1">
|
|
||||||
<Label HorizontalOptions="Center" Text="{Binding [1]}"/>
|
|
||||||
</Frame>
|
|
||||||
|
|
||||||
<Button
|
|
||||||
Grid.Row="2"
|
|
||||||
Text="Menu"
|
|
||||||
VerticalOptions="Center"
|
|
||||||
Margin="0, 50"
|
|
||||||
Clicked="QuandMenuPresse"/>
|
|
||||||
</Grid>
|
|
||||||
</ContentPage>
|
|
@ -0,0 +1,42 @@
|
|||||||
|
<?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="MauiSpark.Pages.VictoirePage"
|
||||||
|
xmlns:pages="clr-namespace:MauiSpark.Pages"
|
||||||
|
xmlns:vues="clr-namespace:MauiSpark.Vues"
|
||||||
|
x:Name="victoirePage"
|
||||||
|
Title="VictoirePage">
|
||||||
|
|
||||||
|
<Grid
|
||||||
|
ColumnDefinitions="*"
|
||||||
|
RowDefinitions="*, auto, *">
|
||||||
|
|
||||||
|
<Grid
|
||||||
|
ColumnDefinitions="*, *, *"
|
||||||
|
RowDefinitions="*">
|
||||||
|
|
||||||
|
<vues:ImageResultatVue Image="{Binding Source={x:Reference victoirePage}, Path=BindingContext.Image}" HorizontalOptions="Center" VerticalOptions="Center"/>
|
||||||
|
|
||||||
|
<vues:TitreVue Texte="{Binding Source={x:Reference victoirePage}, Path=BindingContext.Titre}" Grid.Column="1" VerticalOptions="Center"/>
|
||||||
|
|
||||||
|
<vues:ImageResultatVue Image="{Binding Source={x:Reference victoirePage}, Path=BindingContext.Image}" Grid.Column="2" HorizontalOptions="Center" VerticalOptions="Center"/>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Border
|
||||||
|
Grid.Row="1"
|
||||||
|
StrokeThickness="2"
|
||||||
|
StrokeShape="RoundRectangle 10"
|
||||||
|
Margin="20"
|
||||||
|
Padding="20">
|
||||||
|
|
||||||
|
<Label HorizontalOptions="Center" Text="{Binding Texte}"/>
|
||||||
|
</Border>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
Grid.Row="2"
|
||||||
|
Text="Menu"
|
||||||
|
VerticalOptions="Center"
|
||||||
|
Margin="0, 50"
|
||||||
|
Clicked="QuandMenuPresse"/>
|
||||||
|
</Grid>
|
||||||
|
</ContentPage>
|
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 4.4 KiB |
Loading…
Reference in new issue