SortMenuPage.xaml 1.3 KB

123456789101112131415161718192021
  1. <DisplayPreferences:BaseDisplayPreferencesPage x:Class="MediaBrowser.Plugins.DefaultTheme.DisplayPreferences.SortMenuPage"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:DisplayPreferences="clr-namespace:MediaBrowser.Plugins.DefaultTheme.DisplayPreferences"
  7. xmlns:controls="clr-namespace:MediaBrowser.UI.Controls;assembly=MediaBrowser.UI.Controls"
  8. mc:Ignorable="d"
  9. d:DesignHeight="300" d:DesignWidth="300"
  10. Title="SortMenuPage">
  11. <Grid>
  12. <StackPanel Orientation="Vertical">
  13. <TextBlock Style="{StaticResource Heading2TextBlockStyle}">Sort By</TextBlock>
  14. <StackPanel x:Name="pnlOptions" Orientation="Vertical"></StackPanel>
  15. <controls:ExtendedCheckbox x:Name="chkRemember" Margin="0 20 0 0" Style="{StaticResource CheckBoxStyle}">
  16. <TextBlock Text="Remember Sorting" Style="{StaticResource TextBlockStyle}"></TextBlock>
  17. </controls:ExtendedCheckbox>
  18. </StackPanel>
  19. </Grid>
  20. </DisplayPreferences:BaseDisplayPreferencesPage>