|
|
|
@ -1,6 +1,6 @@
|
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
|
|
<ContentPage Style="{StaticResource Key=MyBackGroundColorStyle2}" x:Name="pageContentSetting"
|
|
|
|
|
<ContentPage Style="{StaticResource Key=MyBackGroundColorStyle}" x:Name="pageContentSetting"
|
|
|
|
|
|
|
|
|
|
xmlns="http://xamarin.com/schemas/2014/forms"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
@ -19,20 +19,53 @@
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
|
|
<Label HorizontalTextAlignment="Start" Text="langage" Grid.Column="0" Grid.Row="0" FontSize="25" TextColor="Black"/>
|
|
|
|
|
<Label Text="English" Grid.Column="1" Grid.Row="0" FontSize="25" TextColor="Black"/>
|
|
|
|
|
<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" TextColor="Black"/>
|
|
|
|
|
<CheckBox IsChecked="True" Grid.Column="2" Grid.Row="0" x:Name="CBFr" CheckedChanged="CBFr_CheckedChanged"/>
|
|
|
|
|
<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="Son" Grid.Column="0" Grid.Row="1" TextColor="Black" FontSize="25"/>
|
|
|
|
|
<Switch IsToggled="true" Grid.Column="1" Grid.Row="1" />
|
|
|
|
|
<Label HorizontalTextAlignment="Start" Text="Mode Extreme" Grid.Column="0" Grid.Row="2" TextColor="Black" FontSize="25"/>
|
|
|
|
|
<Switch IsToggled="True" Grid.Column="1" Grid.Row="2" />
|
|
|
|
|
<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" TextColor="Black"/>
|
|
|
|
|
<Switch IsToggled="True" Grid.Column="1" Grid.Row="3" Toggled="Switch_Toggled_Theme" x:Name="swTheme"/>
|
|
|
|
|
<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>
|
|
|
|
|