44 lines
2.5 KiB
XML
44 lines
2.5 KiB
XML
<Page
|
|
x:Class="FoxTube.Pages.SettingsPages.General"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:FoxTube.Pages.SettingsPages"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d"
|
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
|
|
|
<StackPanel Orientation="Vertical">
|
|
<TextBlock Text="Preferences" FontSize="28"/>
|
|
<TextBlock Text="Region & search" FontSize="22"/>
|
|
<ComboBox Header="App interface language" MinWidth="250" Name="language" SelectionChanged="language_SelectionChanged">
|
|
<ComboBoxItem Content="English"/>
|
|
<ComboBoxItem Content="Russian"/>
|
|
</ComboBox>
|
|
<TextBlock Foreground="Red" Name="restartNote" Text="Reopen the app to apply settings" Visibility="Collapsed"/>
|
|
<ComboBox Header="Region" MinWidth="250" Name="region" SelectionChanged="region_SelectionChanged"/>
|
|
<ComboBox Header="SafeSearch" MinWidth="250" Name="safeSearch" SelectionChanged="safeSearch_SelectionChanged">
|
|
<ComboBoxItem Content="Moderate"/>
|
|
<ComboBoxItem Content="None"/>
|
|
<ComboBoxItem Content="Strict"/>
|
|
</ComboBox>
|
|
|
|
<TextBlock Text="Playback" FontSize="22"/>
|
|
<ComboBox Width="250" Header="Default video playback quality" Name="quality" SelectionChanged="quality_SelectionChanged">
|
|
<ComboBoxItem Content="Remember my choice"/>
|
|
<ComboBoxItem Content="2160p"/>
|
|
<ComboBoxItem Content="1080p"/>
|
|
<ComboBoxItem Content="720p"/>
|
|
<ComboBoxItem Content="480p"/>
|
|
<ComboBoxItem Content="360p"/>
|
|
<ComboBoxItem Content="240p"/>
|
|
<ComboBoxItem Content="144p"/>
|
|
</ComboBox>
|
|
<ToggleSwitch OnContent="Notify when playing on metered connection" OffContent="Notify when playing on metered connection" Name="mobileWarning" Toggled="notification_IsEnabledChanged"/>
|
|
<ToggleSwitch OnContent="Play videos automatically" OffContent="Play videos automatically" Name="autoplay" Toggled="notification_IsEnabledChanged"/>
|
|
|
|
<TextBlock Text="Notifications" FontSize="22"/>
|
|
<ToggleSwitch Name="newVideo" OnContent="Notify when someone of your subscriptions uploaded new video" OffContent="Notify when someone of your subscriptions uploaded new video" Toggled="notification_IsEnabledChanged"/>
|
|
</StackPanel>
|
|
</Page>
|