category management
This commit is contained in:
@ -8,21 +8,32 @@
|
||||
x:Name="settingPage"
|
||||
x:DataType="v:SettingPage"
|
||||
Title="{r:Text Settings}"
|
||||
BindingContext="{x:Reference settingPage}">
|
||||
BindingContext="{x:Reference settingPage}"
|
||||
Shell.TabBarIsVisible="True">
|
||||
|
||||
<TableView Intent="Settings" RowHeight="36">
|
||||
<TableView Intent="Settings" HasUnevenRows="True">
|
||||
<TableSection Title="{r:Text About}">
|
||||
<ui:OptionTextCell Title="{r:Text Version}"
|
||||
<ui:OptionTextCell Height="36" Title="{r:Text Version}"
|
||||
Detail="{Binding Version}"/>
|
||||
</TableSection>
|
||||
<TableSection Title="{r:Text Feature}">
|
||||
<ui:OptionSelectCell Height="36" Title="{r:Text CategoryManage}"
|
||||
Detail="{r:Text Detail}"
|
||||
Command="{Binding CategoryCommand}"/>
|
||||
</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"/>
|
||||
<ui:OptionEntryCell Height="36" Title="{r:Text PrimaryColor}"
|
||||
Text="{Binding PrimaryColor, Mode=TwoWay}"
|
||||
Keyboard="Text"/>
|
||||
<ViewCell Height="120">
|
||||
<Grid BackgroundColor="{DynamicResource OptionTintColor}"
|
||||
ColumnDefinitions=".3*, .7*" Padding="10">
|
||||
<!--<Label Text="" LineBreakMode="TailTruncation"
|
||||
VerticalOptions="Center"
|
||||
TextColor="{DynamicResource TextColor}"/>-->
|
||||
<ui:ColorPicker Grid.Column="1" ColorChanged="ColorPicker_ColorChanged"/>
|
||||
</Grid>
|
||||
</ViewCell>
|
||||
</TableSection>
|
||||
</TableView>
|
||||
</ui:BillingPage>
|
Reference in New Issue
Block a user