28 lines
1.3 KiB
XML
28 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ui:BillingPage xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:r="clr-namespace:Billing.Languages"
|
|
xmlns:ui="clr-namespace:Billing.UI"
|
|
xmlns:v="clr-namespace:Billing.Views"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="Billing.Views.SettingPage"
|
|
x:Name="settingPage"
|
|
x:DataType="v:SettingPage"
|
|
Title="{r:Text Settings}"
|
|
BindingContext="{x:Reference settingPage}">
|
|
|
|
<TableView Intent="Settings" RowHeight="36">
|
|
<TableSection Title="{r:Text About}">
|
|
<ui:OptionTextCell Title="{r:Text Version}"
|
|
Detail="{Binding Version}"/>
|
|
</TableSection>
|
|
<TableSection Title="{r:Text Preference}">
|
|
<ui:OptionEntryCell Title="{r:Text PrimaryColor}"
|
|
Text="{Binding Red, Mode=TwoWay}"
|
|
Keyboard="Numeric"/>
|
|
<ui:OptionEntryCell Text="{Binding Green, Mode=TwoWay}"
|
|
Keyboard="Numeric"/>
|
|
<ui:OptionEntryCell Text="{Binding Blue, Mode=TwoWay}"
|
|
Keyboard="Numeric"/>
|
|
</TableSection>
|
|
</TableView>
|
|
</ui:BillingPage> |