a792132428
Updated and enchanced MainPage Updated Core
28 lines
916 B
XML
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>
|