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/LoginPage.xaml.cs

44 lines
1.1 KiB

using MediaBrowser.Plugins.DefaultTheme.Resources;
using MediaBrowser.UI.Controls;
using MediaBrowser.UI.Pages;
namespace MediaBrowser.Plugins.DefaultTheme.Pages
{
/// <summary>
/// Interaction logic for LoginPage.xaml
/// </summary>
public partial class LoginPage : BaseLoginPage
{
/// <summary>
/// Initializes a new instance of the <see cref="LoginPage" /> class.
/// </summary>
public LoginPage()
: base()
{
InitializeComponent();
}
/// <summary>
/// Subclasses must provide the list that holds the users
/// </summary>
/// <value>The items list.</value>
protected override ExtendedListBox ItemsList
{
get
{
return lstUsers;
}
}
/// <summary>
/// Called when [loaded].
/// </summary>
protected override void OnLoaded()
{
base.OnLoaded();
AppResources.Instance.SetDefaultPageTitle();
}
}
}