parent
97d26ca37c
commit
f7170340d4
@ -0,0 +1,9 @@
|
||||
<?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.Defaite"
|
||||
xmlns:pages="clr-namespace:mastermind.Pages"
|
||||
Title="Defaite">
|
||||
<VerticalStackLayout>
|
||||
</VerticalStackLayout>
|
||||
</ContentPage>
|
@ -0,0 +1,9 @@
|
||||
namespace mastermind.Pages;
|
||||
|
||||
public partial class Defaite : ContentPage
|
||||
{
|
||||
public Defaite()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
namespace mastermind.Pages;
|
||||
|
||||
public partial class Regle : ContentPage
|
||||
{
|
||||
public Regle()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
@ -1,37 +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"
|
||||
xmlns:local="clr-namespace:mastermind.Pages"
|
||||
xmlns:pages="clr-namespace:mastermind.Pages"
|
||||
xmlns:views="clr-namespace:mastermind.Views"
|
||||
x:Class="mastermind.Pages.TableauScore"
|
||||
Title="TableauScore">
|
||||
<ScrollView>
|
||||
<VerticalStackLayout>
|
||||
<FlexLayout Direction="Row" JustifyContent="SpaceAround">
|
||||
<Image Source="star.png" WidthRequest="100" HorizontalOptions="End" VerticalOptions="Center"/>
|
||||
<Image Source="star.png" WidthRequest="100" HorizontalOptions="End" VerticalOptions="Center" Margin="10"/>
|
||||
<Frame BorderColor="Black" CornerRadius="5" BackgroundColor="Black" Margin="10" HorizontalOptions="Center" VerticalOptions="Center" >
|
||||
<Label Text="Scoreboard" HorizontalOptions="Center" FontSize="75" VerticalOptions="Start" Margin="0,10,0,10" />
|
||||
<Label Text="Scoreboard" HorizontalOptions="Center" FontSize="75" VerticalOptions="Start" Margin="0,10,0,10" TextColor="White" />
|
||||
</Frame>
|
||||
<Image Source="star.png" WidthRequest="100" HorizontalOptions="Start" VerticalOptions="Center"/>
|
||||
<Grid RowDefinitions="auto,auto">
|
||||
<Button Grid.Row="0" Style="{StaticResource ButtonFermeture}"/>
|
||||
<Image Grid.Row="1" Source="star.png" WidthRequest="100" HorizontalOptions="Start" VerticalOptions="Center" Margin="10"/>
|
||||
</Grid>
|
||||
</FlexLayout>
|
||||
<Frame Margin="5">
|
||||
<Frame Margin="5" BorderColor="Black">
|
||||
<Grid ColumnDefinitions="auto,*,auto,auto" ColumnSpacing="15">
|
||||
<Label Margin="5" Grid.Column="0" Text="RANK"></Label>
|
||||
<Label Margin="5" Grid.Column="1" Text="PSEUDO" ></Label>
|
||||
<Label Margin="5" Grid.Column="2" Text="Nombre de coût Moyen" ></Label>
|
||||
<Label Margin="5" Grid.Column="3" Text="POINT" ></Label>
|
||||
<Button Margin="5" Grid.Column="0" Text="RANK" Style="{StaticResource ButtonTableau}"></Button>
|
||||
<Button Margin="5" Grid.Column="1" Text="PSEUDO" Style="{StaticResource ButtonTableau}" ></Button>
|
||||
<Button Margin="5" Grid.Column="2" Text="Nombre de coût Moyen" Style="{StaticResource ButtonTableau}"></Button>
|
||||
<Button Margin="5" Grid.Column="3" Text="POINT" Style="{StaticResource ButtonTableau}"></Button>
|
||||
</Grid>
|
||||
</Frame>
|
||||
<local:CTableauScore/>
|
||||
<local:CTableauScore/>
|
||||
<local:CTableauScore/>
|
||||
<local:CTableauScore/>
|
||||
<local:CTableauScore/>
|
||||
<local:CTableauScore/>
|
||||
<local:CTableauScore/>
|
||||
<local:CTableauScore/>
|
||||
<local:CTableauScore/>
|
||||
<local:CTableauScore/>
|
||||
|
||||
<views:CTableauScore/>
|
||||
<views:CTableauScore/>
|
||||
<views:CTableauScore/>
|
||||
<views:CTableauScore/>
|
||||
<views:CTableauScore/>
|
||||
<views:CTableauScore/>
|
||||
<views:CTableauScore/>
|
||||
<views:CTableauScore/>
|
||||
<views:CTableauScore/>
|
||||
<views:CTableauScore/>
|
||||
<views:CTableauScore/>
|
||||
<views:CTableauScore/>
|
||||
</VerticalStackLayout>
|
||||
</ScrollView>
|
||||
|
||||
|
After Width: | Height: | Size: 50 KiB |
After Width: | Height: | Size: 265 KiB |
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="mastermind.Pages.CTableauScore">
|
||||
x:Class="mastermind.Views.CTableauScore">
|
||||
|
||||
<Frame BorderColor="Black" CornerRadius="5" Padding="0" BackgroundColor="Gray" VerticalOptions="Start" Margin="5" >
|
||||
<Grid ColumnDefinitions="auto,*,auto,auto" ColumnSpacing="10">
|
@ -1,4 +1,4 @@
|
||||
namespace mastermind.Pages;
|
||||
namespace mastermind.Views;
|
||||
|
||||
public partial class CTableauScore : ContentView
|
||||
{
|
Loading…
Reference in new issue