parent
4df6d73bab
commit
fc9fbb2b31
@ -0,0 +1,20 @@
|
|||||||
|
<?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="mastermind.Pages.Egaliter"
|
||||||
|
xmlns:pages="clr-namespace:mastermind.Pages"
|
||||||
|
Title="Egaliter">
|
||||||
|
<VerticalStackLayout>
|
||||||
|
<FlexLayout Direction="Row" JustifyContent="SpaceAround" AlignContent="Center" VerticalOptions="Center" Margin="10">
|
||||||
|
<Image Source="egaliter.jpg" MaximumHeightRequest="100" MaximumWidthRequest="100" />
|
||||||
|
<Frame BackgroundColor="Black" HorizontalOptions="Center" VerticalOptions="Center">
|
||||||
|
<Label Text="Egaliter" TextColor="White" FontSize="Large" HorizontalOptions="Center"></Label>
|
||||||
|
</Frame>
|
||||||
|
<Image Source="egaliter.jpg" MaximumHeightRequest="100" MaximumWidthRequest="100"/>
|
||||||
|
</FlexLayout>
|
||||||
|
<Frame BackgroundColor="Grey" Margin="20">
|
||||||
|
<Label HorizontalOptions="Center" Text="Les deux joueur ont trouvé en même temps"/>
|
||||||
|
</Frame>
|
||||||
|
<Button Text="Menu" VerticalOptions="End" HorizontalOptions="Center"></Button>
|
||||||
|
</VerticalStackLayout>
|
||||||
|
</ContentPage>
|
@ -0,0 +1,9 @@
|
|||||||
|
namespace mastermind.Pages;
|
||||||
|
|
||||||
|
public partial class Egaliter : ContentPage
|
||||||
|
{
|
||||||
|
public Egaliter()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,20 @@
|
|||||||
|
<?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="mastermind.Pages.Victoire"
|
||||||
|
xmlns:pages="clr-namespace:mastermind.Pages"
|
||||||
|
Title="Victoire">
|
||||||
|
<VerticalStackLayout>
|
||||||
|
<FlexLayout Direction="Row" JustifyContent="SpaceAround" AlignContent="Center" VerticalOptions="Center" Margin="10">
|
||||||
|
<Image Source="trophy.jpg" MaximumHeightRequest="100" MaximumWidthRequest="100" />
|
||||||
|
<Frame BackgroundColor="Black" HorizontalOptions="Center" VerticalOptions="Center">
|
||||||
|
<Label Text="Victoire" TextColor="White" FontSize="Large" HorizontalOptions="Center"></Label>
|
||||||
|
</Frame>
|
||||||
|
<Image Source="trophy.jpg" MaximumHeightRequest="100" MaximumWidthRequest="100"/>
|
||||||
|
</FlexLayout>
|
||||||
|
<Frame BackgroundColor="Grey" Margin="20" >
|
||||||
|
<Label HorizontalOptions="Center" Text="Le joueur x a gagné"/>
|
||||||
|
</Frame>
|
||||||
|
<Button Text="Menu" VerticalOptions="End" HorizontalOptions="Center"></Button>
|
||||||
|
</VerticalStackLayout>
|
||||||
|
</ContentPage>
|
@ -0,0 +1,9 @@
|
|||||||
|
namespace mastermind.Pages;
|
||||||
|
|
||||||
|
public partial class Victoire : ContentPage
|
||||||
|
{
|
||||||
|
public Victoire()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
}
|
After Width: | Height: | Size: 44 KiB |
Before Width: | Height: | Size: 68 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 3.0 MiB |
Loading…
Reference in new issue