After Width: | Height: | Size: 9.5 KiB |
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 71 KiB |
After Width: | Height: | Size: 9.5 KiB |
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 16 KiB |
@ -1,13 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ContentView 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"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
mc:Ignorable="d"
|
||||
x:Class="TheGameExtreme.Rules">
|
||||
<ContentView.Content>
|
||||
<StackLayout>
|
||||
<Label Text="Hello Xamarin.Forms!" />
|
||||
</StackLayout>
|
||||
</ContentView.Content>
|
||||
</ContentView>
|
@ -1,5 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Application 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" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" x:Class="TheGameExtreme.App">
|
||||
<Application.Resources>
|
||||
<Application.Resources>
|
||||
<ResourceDictionary>
|
||||
|
||||
<Color x:Key="BlackColor">black</Color>
|
||||
<Color x:Key="WhiteColor">white</Color>
|
||||
<Color x:Key="SkyBlueColor">SkyBlue</Color>
|
||||
|
||||
|
||||
</ResourceDictionary>
|
||||
</Application.Resources>
|
||||
</Application>
|
@ -1,22 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
|
||||
<data name="coucou" xml:space="preserve">
|
||||
<value>coucou</value>
|
||||
<comment>Valeur de test</comment>
|
||||
</data>
|
||||
|
||||
</root>
|
||||
|
@ -1,15 +1,58 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<ContentPage
|
||||
<ContentPage Style="{StaticResource MyBackGroundColorStyle}"
|
||||
xmlns="http://xamarin.com/schemas/2014/forms"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="TheGameExtreme.view.MultiPlayerMode">
|
||||
|
||||
<StackLayout>
|
||||
<Grid>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="*"/>
|
||||
<RowDefinition Height="*"/>
|
||||
<RowDefinition Height="*"/>
|
||||
</Grid.RowDefinitions>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
|
||||
<Button Text="Connexion Bluetooth" Margin="60"/>
|
||||
<Button Text="Connexion Wifi" />
|
||||
<ImageButton Source="ArrowSettingsBack.png"
|
||||
Margin="15,15,0,0"
|
||||
Clicked="BackMulti_Clicked"
|
||||
BackgroundColor="Transparent"
|
||||
VerticalOptions="StartAndExpand"
|
||||
HorizontalOptions="Start"
|
||||
HeightRequest="50"
|
||||
WidthRequest="58"
|
||||
Grid.Column="0" Grid.Row="0"/>
|
||||
|
||||
</StackLayout>
|
||||
<Label Text="Multijoueur" Style="{StaticResource ColorLabelDark}"
|
||||
FontSize="28"
|
||||
VerticalTextAlignment="Center"
|
||||
HorizontalTextAlignment="Center"
|
||||
Grid.Column="1" Grid.Row="0"/>
|
||||
|
||||
<Button Text="Connexion Bluetooth"
|
||||
Grid.Row="1"
|
||||
Grid.Column="1"
|
||||
WidthRequest="230"
|
||||
HeightRequest="57"
|
||||
VerticalOptions="Center"
|
||||
HorizontalOptions="Center"
|
||||
CornerRadius="10"
|
||||
BackgroundColor="SkyBlue"/>
|
||||
|
||||
<Button Text="Connexion Wifi"
|
||||
Grid.Row="2"
|
||||
Grid.Column="1"
|
||||
WidthRequest="230"
|
||||
HeightRequest="57"
|
||||
VerticalOptions="Center"
|
||||
HorizontalOptions="Center"
|
||||
CornerRadius="10"
|
||||
BackgroundColor="SkyBlue"/>
|
||||
|
||||
</Grid>
|
||||
|
||||
</ContentPage>
|
@ -1,17 +1,89 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<ContentPage
|
||||
<ContentPage BackgroundColor="{DynamicResource BlackColor}" x:Name="pageContentSetting"
|
||||
|
||||
xmlns="http://xamarin.com/schemas/2014/forms"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="TheGameExtreme.view.Settings">
|
||||
|
||||
<StackLayout>
|
||||
<Label Text="langage" Margin="50" />
|
||||
<Grid>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="*"/>
|
||||
<RowDefinition Height="*"/>
|
||||
<RowDefinition Height="*"/>
|
||||
<RowDefinition Height="*"/>
|
||||
</Grid.RowDefinitions>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
|
||||
<ImageButton Source="ArrowSettingsBack.png"
|
||||
Grid.Row="0" Grid.Column="0"
|
||||
VerticalOptions="Start"
|
||||
HorizontalOptions="StartAndExpand"
|
||||
HeightRequest="40"
|
||||
WidthRequest="50"
|
||||
Clicked="SettingToHomePage"
|
||||
BackgroundColor="Transparent"
|
||||
Margin="10,10,0,0"/>
|
||||
|
||||
<Label HorizontalTextAlignment="Start"
|
||||
Text ="Langage" Grid.Column="0"
|
||||
Grid.Row="0" FontSize="25"
|
||||
TextColor="{DynamicResource WhiteColor}"
|
||||
Margin="40,58,0,0"/>
|
||||
|
||||
<Label Text="English"
|
||||
Grid.Column="1" Grid.Row="0"
|
||||
FontSize="25"
|
||||
|
||||
TextColor="{DynamicResource WhiteColor}"
|
||||
Margin="80,58,0,0"/>
|
||||
|
||||
<CheckBox IsChecked="False"
|
||||
Grid.Column="1" Grid.Row="0"
|
||||
x:Name="CBBr"
|
||||
CheckedChanged="CBBr_CheckedChanged"
|
||||
Color="SkyBlue"
|
||||
Margin="40,63,0,0"/>
|
||||
|
||||
<Label Text="Français"
|
||||
Grid.Column="2" Grid.Row="0"
|
||||
FontSize="25"
|
||||
TextColor="{DynamicResource WhiteColor}"
|
||||
Margin="80,58,0,0"/>
|
||||
|
||||
<Label Text="Sound"/>
|
||||
<Switch IsToggled="true"/>
|
||||
<Label Text="Mode Extreme"/>
|
||||
<Switch IsToggled="true"/>
|
||||
</StackLayout>
|
||||
<CheckBox IsChecked="True"
|
||||
Grid.Column="2" Grid.Row="0"
|
||||
x:Name="CBFr"
|
||||
CheckedChanged="CBFr_CheckedChanged"
|
||||
Color="SkyBlue"
|
||||
Margin="40,63,0,0"/>
|
||||
|
||||
|
||||
<Label HorizontalTextAlignment="Start"
|
||||
Text="Mode Extreme" Grid.Column="0"
|
||||
Grid.Row="2" FontSize="25"
|
||||
TextColor="{DynamicResource WhiteColor}"
|
||||
Margin="40,25,0,0"/>
|
||||
|
||||
<Switch
|
||||
Grid.Column="1" Grid.Row="2"
|
||||
OnColor="SkyBlue"
|
||||
ThumbColor="WhiteSmoke"/>
|
||||
|
||||
<Label Text="Thème Clair"
|
||||
Grid.Column="0" Grid.Row="3"
|
||||
FontSize="25"
|
||||
TextColor="{DynamicResource WhiteColor}"
|
||||
Margin="40,25,0,0"/>
|
||||
|
||||
<Switch
|
||||
Grid.Column="1" Grid.Row="3"
|
||||
Toggled="Switch_Toggled_Theme" x:Name="swTheme"
|
||||
OnColor="SkyBlue" ThumbColor="WhiteSmoke"/>
|
||||
</Grid>
|
||||
|
||||
</ContentPage>
|
||||
|