parent
68ac93ba38
commit
ba245ca2a3
@ -0,0 +1,117 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentPage BackgroundColor="{DynamicResource BlackColor}"
|
||||
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="OrderStacks.view.ReglesParticuliere"
|
||||
xmlns:resources="clr-namespace:OrderStacks.Resx">
|
||||
|
||||
<Grid Margin="20,20,20,20">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="2*"/>
|
||||
<RowDefinition Height="10*"/>
|
||||
<RowDefinition Height="2*"/>
|
||||
|
||||
|
||||
|
||||
</Grid.RowDefinitions>
|
||||
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="2*"/>
|
||||
<ColumnDefinition Width="10*"/>
|
||||
<ColumnDefinition Width="2*"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
|
||||
<Label
|
||||
Text="{x:Static resources:AppResources.StrSpecRules}"
|
||||
VerticalOptions="Center"
|
||||
HorizontalOptions="Center"
|
||||
Grid.Column="1"
|
||||
Grid.Row="0"
|
||||
FontSize="35"
|
||||
TextColor="{DynamicResource WhiteColor}"/>
|
||||
|
||||
<Button Text="{x:Static resources:AppResources.StrBtnPlay}"
|
||||
Grid.Row="0"
|
||||
Grid.Column="2"
|
||||
BackgroundColor="{DynamicResource SkyBlueColor}"
|
||||
VerticalOptions="Center"
|
||||
HorizontalOptions="Center"
|
||||
CornerRadius="10"
|
||||
Clicked="ClickToPlay"/>
|
||||
|
||||
<ImageButton Source="HomeIcon.png"
|
||||
Grid.Column="0"
|
||||
Grid.Row="0"
|
||||
VerticalOptions="Start"
|
||||
HorizontalOptions="StartAndExpand"
|
||||
HeightRequest="50"
|
||||
WidthRequest="60"
|
||||
Clicked="BackToHome"
|
||||
BackgroundColor="Transparent"/>
|
||||
|
||||
<Button Text="{x:Static resources:AppResources.StrNext}"
|
||||
CornerRadius="10"
|
||||
BackgroundColor="{DynamicResource SkyBlueColor}"
|
||||
Grid.Column="1"
|
||||
Grid.Row="2"
|
||||
VerticalOptions="Center"
|
||||
HorizontalOptions="Center"
|
||||
Clicked="nextPage_Rules"/>
|
||||
|
||||
<ScrollView Grid.Row="1"
|
||||
Grid.Column="0"
|
||||
Grid.ColumnSpan="3"
|
||||
Margin="20,0,20,0">
|
||||
<StackLayout>
|
||||
|
||||
|
||||
<Label Text="{x:Static resources:AppResources.StrValueFracDec}"
|
||||
FontSize="20"
|
||||
TextColor="{DynamicResource Gold}"/>
|
||||
<Label
|
||||
Text="{x:Static resources:AppResources.StrTiret14}"
|
||||
FontSize="16"
|
||||
TextColor="{DynamicResource WhiteColor}"/>
|
||||
|
||||
<Label
|
||||
Text="{x:Static resources:AppResources.StrTiret19}"
|
||||
FontSize="16"
|
||||
TextColor="{DynamicResource WhiteColor}"/>
|
||||
|
||||
<Label
|
||||
Text="{x:Static resources:AppResources.StrTiret15}"
|
||||
FontSize="16"
|
||||
TextColor="{DynamicResource WhiteColor}"/>
|
||||
|
||||
<Label
|
||||
Text="{x:Static resources:AppResources.StrTiret16}"
|
||||
FontSize="16"
|
||||
TextColor="{DynamicResource WhiteColor}"/>
|
||||
|
||||
|
||||
<Label
|
||||
Text="{x:Static resources:AppResources.StrFracValue}"
|
||||
FontSize="20"
|
||||
TextColor="{DynamicResource Gold}"/>
|
||||
|
||||
<Label
|
||||
Text="{x:Static resources:AppResources.StrTiret17}"
|
||||
FontSize="16"
|
||||
TextColor="{DynamicResource WhiteColor}"/>
|
||||
|
||||
<Label
|
||||
Text="{x:Static resources:AppResources.StrTiret18}"
|
||||
FontSize="16"
|
||||
TextColor="{DynamicResource WhiteColor}"/>
|
||||
|
||||
|
||||
|
||||
</StackLayout>
|
||||
</ScrollView>
|
||||
</Grid>
|
||||
|
||||
|
||||
</ContentPage>
|
Loading…
Reference in new issue