Archived
1
0
This repository has been archived on 2026-04-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
FoxTube/FoxTube/Views/Settings.xaml
T
Michael Gordeev a792132428 App UI development
Updated and enchanced MainPage
Updated Core
2020-05-12 01:32:41 +03:00

28 lines
916 B
XML

<Page
x:Class="FoxTube.Views.Settings"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:settingssections="using:FoxTube.Views.SettingsSections"
mc:Ignorable="d">
<Pivot SelectedIndex="0" Name="pivot">
<PivotItem Name="generalTab" Header="Preferences">
<ScrollViewer Padding="15,0">
<settingssections:General/>
</ScrollViewer>
</PivotItem>
<PivotItem Name="aboutTab" Header="About us">
<ScrollViewer Padding="15,0">
<settingssections:About/>
</ScrollViewer>
</PivotItem>
<PivotItem Name="inboxTab" Header="Inbox">
<ScrollViewer Padding="15,0">
<settingssections:Inbox x:Name="inbox"/>
</ScrollViewer>
</PivotItem>
</Pivot>
</Page>