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

@ -5814,6 +5814,9 @@ namespace TheGameExtreme.Droid
// aapt resource value: 0x7F07007C
public const int tooltip_frame_light = 2131165308;
// aapt resource value: 0x7F07007D
public const int UsersExiticon = 2131165309;
static Drawable()
{
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">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -122,5 +122,8 @@
<ItemGroup>
<AndroidResource Include="Resources\drawable\ArrowSettingsBack.png" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\drawable\UsersExiticon.png" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
</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">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -155,5 +155,6 @@
<ItemGroup>
<Content Include="Apple.ico" />
<BundleResource Include="Resources\ArrowSettingsBack.png" />
<BundleResource Include="Resources\UsersExiticon.png" />
</ItemGroup>
</Project>

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<ContentPage BackgroundColor="{DynamicResource BlackColor}"
<ContentPage BackgroundColor="{DynamicResource WhiteColor}"
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:d="http://xamarin.com/schemas/2014/forms/design"
@ -8,6 +8,13 @@
mc:Ignorable="d"
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
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">
<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
Orientation="Vertical">
<Label HorizontalTextAlignment="Center" x:Name="pile0" Text="1" />
@ -65,7 +78,7 @@
<Label VerticalTextAlignment="Center" Text="Pile Descendante" />
</StackLayout>
</StackLayout>
</StackLayout>
<Label Text="Veuillez selectionner une carte à placer:" />
<ScrollView
Orientation="Horizontal"
@ -82,7 +95,7 @@
<Button x:Name="card7" Clicked="played" />
</StackLayout>
</ScrollView>
</StackLayout>
<StackLayout
x:Name="botPanel"
Orientation="Vertical"
@ -92,8 +105,8 @@
</StackLayout>
</StackLayout>
</StackLayout>
</ScrollView>
</Grid>
</ContentPage>
Loading…
Cancel
Save