master
Baptiste ARNAUD 6 years ago
parent 15eebd9a07
commit 06023cb9d1

@ -5814,6 +5814,9 @@ namespace TheGameExtreme.Droid
// aapt resource value: 0x7F07007C // aapt resource value: 0x7F07007C
public const int tooltip_frame_light = 2131165308; public const int tooltip_frame_light = 2131165308;
// aapt resource value: 0x7F07007D
public const int UsersExiticon = 2131165309;
static Drawable() static Drawable()
{ {
global::Android.Runtime.ResourceIdManager.UpdateIdValues(); global::Android.Runtime.ResourceIdManager.UpdateIdValues();

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.5 KiB

After

Width:  |  Height:  |  Size: 7.5 KiB

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup> <PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -122,5 +122,8 @@
<ItemGroup> <ItemGroup>
<AndroidResource Include="Resources\drawable\ArrowSettingsBack.png" /> <AndroidResource Include="Resources\drawable\ArrowSettingsBack.png" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\drawable\UsersExiticon.png" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" /> <Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
</Project> </Project>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.5 KiB

After

Width:  |  Height:  |  Size: 7.5 KiB

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup> <PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -155,5 +155,6 @@
<ItemGroup> <ItemGroup>
<Content Include="Apple.ico" /> <Content Include="Apple.ico" />
<BundleResource Include="Resources\ArrowSettingsBack.png" /> <BundleResource Include="Resources\ArrowSettingsBack.png" />
<BundleResource Include="Resources\UsersExiticon.png" />
</ItemGroup> </ItemGroup>
</Project> </Project>

@ -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,13 @@
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 +22,26 @@
<ScrollView
Orientation="Vertical">
<StackLayout>
<StackLayout> <StackLayout>
<StackLayout <Label x:Name="pseudo"
Orientation="Vertical" Text="Pseudo"
Margin="10,20,10,20"> HorizontalTextAlignment="Center"
<Label x:Name="pseudo" Text="Pseudo" /> VerticalTextAlignment="Center"
<Label Text="Selectionner la pile sur laquel vous souhaitez poser la carte:" /> TextColor="{DynamicResource WhiteColor}"
<StackLayout Margin="20"
Orientation="Horizontal" FontSize="28"
Margin="0,0,0,40"> 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"> 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>
Loading…
Cancel
Save