-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettingsPage.xaml
26 lines (26 loc) · 1.13 KB
/
SettingsPage.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage
x:Class="Docutain_SDK_Example_.NET_MAUI.SettingsPage"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Docutain_SDK_Example_.NET_MAUI"
Title="SettingsPage">
<ContentPage.Content>
<TableView HasUnevenRows="true" Intent="Settings">
<TableRoot>
<TableSection x:Name="ColorSettingSection" Title="Color settings" />
<TableSection x:Name="ScanSettingSection" Title="Scan settings" />
<TableSection x:Name="EditSettingSection" Title="Edit settings" />
<TableSection x:Name="ResetSettingSection" Title="Reset to default">
<ViewCell>
<Button
x:Name="bt_Reset"
Margin="10"
Clicked="bt_Reset_Clicked"
Text="Reset" />
</ViewCell>
</TableSection>
</TableRoot>
</TableView>
</ContentPage.Content>
</ContentPage>