12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- using MediaBrowser.Model.Entities;
- using System.Windows;
- namespace MediaBrowser.Plugins.DefaultTheme.DisplayPreferences
- {
- /// <summary>
- /// Interaction logic for ViewMenuPage.xaml
- /// </summary>
- public partial class ViewMenuPage : BaseDisplayPreferencesPage
- {
- /// <summary>
- /// Initializes a new instance of the <see cref="ViewMenuPage" /> class.
- /// </summary>
- public ViewMenuPage()
- {
- InitializeComponent();
- radioCoverFlow.Click += radioCoverFlow_Click;
- radioList.Click += radioList_Click;
- radioPoster.Click += radioPoster_Click;
- radioThumbstrip.Click += radioThumbstrip_Click;
- }
- /// <summary>
- /// Called when [loaded].
- /// </summary>
- protected override void OnLoaded()
- {
- base.OnLoaded();
- UpdateFields();
- }
- /// <summary>
- /// Handles the Click event of the radioThumbstrip control.
- /// </summary>
- /// <param name="sender">The source of the event.</param>
- /// <param name="e">The <see cref="RoutedEventArgs" /> instance containing the event data.</param>
- void radioThumbstrip_Click(object sender, RoutedEventArgs e)
- {
- MainPage.DisplayPreferences.ScrollDirection = ScrollDirection.Horizontal;
- MainPage.DisplayPreferences.ViewType = ViewTypes.ThumbStrip;
- MainPage.NotifyDisplayPreferencesChanged();
- }
- /// <summary>
- /// Handles the Click event of the radioPoster control.
- /// </summary>
- /// <param name="sender">The source of the event.</param>
- /// <param name="e">The <see cref="RoutedEventArgs" /> instance containing the event data.</param>
- void radioPoster_Click(object sender, RoutedEventArgs e)
- {
- MainPage.DisplayPreferences.ViewType = ViewTypes.Poster;
- MainPage.NotifyDisplayPreferencesChanged();
- }
- /// <summary>
- /// Handles the Click event of the radioList control.
- /// </summary>
- /// <param name="sender">The source of the event.</param>
- /// <param name="e">The <see cref="RoutedEventArgs" /> instance containing the event data.</param>
- void radioList_Click(object sender, RoutedEventArgs e)
- {
- MainPage.DisplayPreferences.ScrollDirection = ScrollDirection.Vertical;
- MainPage.DisplayPreferences.ViewType = ViewTypes.List;
- MainPage.NotifyDisplayPreferencesChanged();
- }
- /// <summary>
- /// Handles the Click event of the radioCoverFlow control.
- /// </summary>
- /// <param name="sender">The source of the event.</param>
- /// <param name="e">The <see cref="RoutedEventArgs" /> instance containing the event data.</param>
- void radioCoverFlow_Click(object sender, RoutedEventArgs e)
- {
- MainPage.DisplayPreferences.ScrollDirection = ScrollDirection.Horizontal;
- MainPage.DisplayPreferences.ViewType = ViewTypes.CoverFlow;
- MainPage.NotifyDisplayPreferencesChanged();
- }
- /// <summary>
- /// Updates the fields.
- /// </summary>
- private void UpdateFields()
- {
- var displayPreferences = MainPage.DisplayPreferences;
- radioCoverFlow.IsChecked = displayPreferences.ViewType == ViewTypes.CoverFlow;
- radioList.IsChecked = displayPreferences.ViewType == ViewTypes.List;
- radioPoster.IsChecked = displayPreferences.ViewType == ViewTypes.Poster;
- radioThumbstrip.IsChecked = displayPreferences.ViewType == ViewTypes.ThumbStrip;
- }
- }
- }
|