|
|
@ -1,6 +1,6 @@
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
|
|
|
|
<ContentPage BackgroundColor="{DynamicResource BlackColor}"
|
|
|
|
<ContentPage BackgroundColor="{DynamicResource WhiteColor}"
|
|
|
|
xmlns="http://xamarin.com/schemas/2014/forms"
|
|
|
|
xmlns="http://xamarin.com/schemas/2014/forms"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
xmlns:d="http://xamarin.com/schemas/2014/forms/design"
|
|
|
|
xmlns:d="http://xamarin.com/schemas/2014/forms/design"
|
|
|
@ -8,6 +8,14 @@
|
|
|
|
mc:Ignorable="d"
|
|
|
|
mc:Ignorable="d"
|
|
|
|
x:Class="TheGameExtreme.view.MainPage">
|
|
|
|
x:Class="TheGameExtreme.view.MainPage">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Grid>
|
|
|
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
|
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
|
|
|
|
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
|
|
|
|
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
|
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -15,20 +23,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
|
|
|
|
Orientation="Vertical">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<StackLayout>
|
|
|
|
<StackLayout>
|
|
|
|
|
|
|
|
<Label x:Name="pseudo"
|
|
|
|
|
|
|
|
Text="Pseudo"
|
|
|
|
|
|
|
|
HorizontalTextAlignment="Center"
|
|
|
|
|
|
|
|
VerticalTextAlignment="Center"
|
|
|
|
|
|
|
|
TextColor="{DynamicResource WhiteColor}"
|
|
|
|
|
|
|
|
Margin="20"
|
|
|
|
|
|
|
|
FontSize="28"
|
|
|
|
|
|
|
|
Grid.Row="0"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ImageButton Source="UsersExiticon.png"
|
|
|
|
|
|
|
|
HorizontalOptions="End"
|
|
|
|
|
|
|
|
VerticalOptions="Start"
|
|
|
|
|
|
|
|
WidthRequest="60"
|
|
|
|
|
|
|
|
HeightRequest="60"
|
|
|
|
|
|
|
|
Margin="0,0,20,0"
|
|
|
|
|
|
|
|
Grid.Row="0"/>
|
|
|
|
|
|
|
|
|
|
|
|
<StackLayout>
|
|
|
|
|
|
|
|
<StackLayout
|
|
|
|
|
|
|
|
Orientation="Vertical"
|
|
|
|
|
|
|
|
Margin="10,20,10,20">
|
|
|
|
|
|
|
|
<Label x:Name="pseudo" Text="Pseudo" />
|
|
|
|
|
|
|
|
<Label Text="Selectionner la pile sur laquel vous souhaitez poser la carte:" />
|
|
|
|
|
|
|
|
<StackLayout
|
|
|
|
|
|
|
|
Orientation="Horizontal"
|
|
|
|
|
|
|
|
Margin="0,0,0,40">
|
|
|
|
|
|
|
|
<StackLayout
|
|
|
|
<StackLayout
|
|
|
|
Orientation="Vertical">
|
|
|
|
Orientation="Vertical">
|
|
|
|
<Label HorizontalTextAlignment="Center" x:Name="pile0" Text="1" />
|
|
|
|
<Label HorizontalTextAlignment="Center" x:Name="pile0" Text="1" />
|
|
|
@ -65,7 +78,7 @@
|
|
|
|
<Label VerticalTextAlignment="Center" Text="Pile Descendante" />
|
|
|
|
<Label VerticalTextAlignment="Center" Text="Pile Descendante" />
|
|
|
|
</StackLayout>
|
|
|
|
</StackLayout>
|
|
|
|
</StackLayout>
|
|
|
|
</StackLayout>
|
|
|
|
</StackLayout>
|
|
|
|
|
|
|
|
<Label Text="Veuillez selectionner une carte à placer:" />
|
|
|
|
<Label Text="Veuillez selectionner une carte à placer:" />
|
|
|
|
<ScrollView
|
|
|
|
<ScrollView
|
|
|
|
Orientation="Horizontal"
|
|
|
|
Orientation="Horizontal"
|
|
|
@ -82,7 +95,7 @@
|
|
|
|
<Button x:Name="card7" Clicked="played" />
|
|
|
|
<Button x:Name="card7" Clicked="played" />
|
|
|
|
</StackLayout>
|
|
|
|
</StackLayout>
|
|
|
|
</ScrollView>
|
|
|
|
</ScrollView>
|
|
|
|
</StackLayout>
|
|
|
|
|
|
|
|
<StackLayout
|
|
|
|
<StackLayout
|
|
|
|
x:Name="botPanel"
|
|
|
|
x:Name="botPanel"
|
|
|
|
Orientation="Vertical"
|
|
|
|
Orientation="Vertical"
|
|
|
@ -92,8 +105,8 @@
|
|
|
|
</StackLayout>
|
|
|
|
</StackLayout>
|
|
|
|
</StackLayout>
|
|
|
|
</StackLayout>
|
|
|
|
|
|
|
|
|
|
|
|
</StackLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
|
|
</ContentPage>
|
|
|
|
</ContentPage>
|