You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Plugins.Defaul.../Pages/InternalPlayerPage.xaml.cs

42 lines
1.1 KiB

using MediaBrowser.Plugins.DefaultTheme.Resources;
using MediaBrowser.UI.Pages;
using System.Windows;
namespace MediaBrowser.Plugins.DefaultTheme.Pages
{
/// <summary>
/// Interaction logic for InternalPlayerPage.xaml
/// </summary>
public partial class InternalPlayerPage : BaseInternalPlayerPage
{
/// <summary>
/// Initializes a new instance of the <see cref="InternalPlayerPage" /> class.
/// </summary>
public InternalPlayerPage()
{
InitializeComponent();
}
/// <summary>
/// Called when [loaded].
/// </summary>
protected override void OnLoaded()
{
base.OnLoaded();
AppResources.Instance.ClearPageTitle();
AppResources.Instance.HeaderContent.Visibility = Visibility.Collapsed;
}
/// <summary>
/// Called when [unloaded].
/// </summary>
protected override void OnUnloaded()
{
base.OnUnloaded();
AppResources.Instance.HeaderContent.Visibility = Visibility.Visible;
}
}
}