You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.4 KiB
72 lines
2.4 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<ContentPage Style="{StaticResource Key=MyBackGroundColorStyle}" x:Name="pageContentSetting"
|
|
|
|
xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="TheGameExtreme.view.Settings">
|
|
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Label Style="{StaticResource ColorLabelDark}"
|
|
HorizontalTextAlignment="Start"
|
|
Text="langage" Grid.Column="0"
|
|
Grid.Row="0" FontSize="25"
|
|
x:Name="lbColor0"/>
|
|
|
|
<Label Text="English"
|
|
Grid.Column="1" Grid.Row="0"
|
|
FontSize="25"
|
|
x:Name="lbColor1"
|
|
Style="{StaticResource ColorLabelDark}"/>
|
|
|
|
<CheckBox IsChecked="False"
|
|
Grid.Column="1" Grid.Row="0"
|
|
x:Name="CBBr"
|
|
CheckedChanged="CBBr_CheckedChanged"/>
|
|
|
|
<Label Text="Français"
|
|
Grid.Column="2" Grid.Row="0"
|
|
FontSize="25"
|
|
x:Name="lbColor2"
|
|
Style="{StaticResource ColorLabelDark}"/>
|
|
|
|
<CheckBox IsChecked="True"
|
|
Grid.Column="2" Grid.Row="0"
|
|
x:Name="CBFr"
|
|
CheckedChanged="CBFr_CheckedChanged"/>
|
|
|
|
|
|
<Label HorizontalTextAlignment="Start"
|
|
Text="Mode Extreme" Grid.Column="0"
|
|
Grid.Row="2" FontSize="25"
|
|
x:Name="lbColor3"
|
|
Style="{StaticResource ColorLabelDark}"/>
|
|
|
|
<Switch IsToggled="True"
|
|
Grid.Column="1" Grid.Row="2" />
|
|
|
|
<Label Text="Thème sombre"
|
|
Grid.Column="0" Grid.Row="3"
|
|
FontSize="25"
|
|
x:Name="lbColor4"
|
|
Style="{StaticResource ColorLabelDark}"/>
|
|
|
|
<Switch IsToggled="True"
|
|
Grid.Column="1" Grid.Row="3"
|
|
Toggled="Switch_Toggled_Theme" x:Name="swTheme"/>
|
|
</Grid>
|
|
|
|
</ContentPage>
|