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

32 lines
937 B

using System.Windows;
using MediaBrowser.UI.Controller;
namespace MediaBrowser.UI
{
/// <summary>
/// Interaction logic for HiddenWindow.xaml
/// </summary>
public partial class HiddenWindow : Window
{
/// <summary>
/// Initializes a new instance of the <see cref="HiddenWindow" /> class.
/// </summary>
public HiddenWindow()
{
InitializeComponent();
Loaded += HiddenWindow_Loaded;
}
/// <summary>
/// Handles the Loaded event of the HiddenWindow 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 HiddenWindow_Loaded(object sender, RoutedEventArgs e)
{
Title += " " + UIKernel.Instance.ApplicationVersion.ToString();
}
}
}