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.
39 lines
1.9 KiB
39 lines
1.9 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<ContentPage Style="{StaticResource Key=MyBackGroundColorStyle2}" 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 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 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 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"/>
|
|
</Grid>
|
|
|
|
</ContentPage>
|