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/General.xaml
T
Michael Gordeev 583bc8fc9b Settings menu
2018-04-14 17:28:22 +03:00

41 lines
2.0 KiB
XML

<Page
x:Class="FoxTube.General"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:FoxTube"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<StackPanel Orientation="Vertical" Margin="10">
<TextBlock Text="General settings" FontSize="28"/>
<TextBlock Text="Default video playback quality"/>
<ComboBox Margin="0,0,0,10">
<ComboBoxItem Content="Auto" IsSelected="True"/>
<ComboBoxItem Content="1080p60"/>
<ComboBoxItem Content="1080p30"/>
<ComboBoxItem Content="720p60"/>
<ComboBoxItem Content="720p30"/>
<ComboBoxItem Content="480p"/>
<ComboBoxItem Content="360p"/>
<ComboBoxItem Content="240p"/>
<ComboBoxItem Content="144p"/>
</ComboBox>
<TextBlock Text="Notifications"/>
<CheckBox Content="New video" IsChecked="True"/>
<CheckBox Content="New post" IsChecked="True"/>
<CheckBox Content="New commentary" IsChecked="True"/>
<CheckBox Content="What's new posts" IsChecked="True"/>
<CheckBox Content="Developer's messages" IsChecked="True" Margin="0,0,0,10"/>
<ToggleSwitch OnContent="Notify when playing on mobile data" OffContent="Notify when playing on mobile data"/>
<ToggleSwitch OnContent="Play videos automatically" OffContent="Play videos automatically" IsOn="True" Margin="0,0,0,10"/>
<TextBlock Text="Lanuguage"/>
<ComboBox>
<ComboBoxItem Content="English" IsSelected="True"/>
<ComboBoxItem Content="Russian"/>
</ComboBox>
</StackPanel>
</Grid>
</Page>