using System.Windows; using MediaBrowser.UI.Controller; namespace MediaBrowser.UI { /// /// Interaction logic for HiddenWindow.xaml /// public partial class HiddenWindow : Window { /// /// Initializes a new instance of the class. /// public HiddenWindow() { InitializeComponent(); Loaded += HiddenWindow_Loaded; } /// /// Handles the Loaded event of the HiddenWindow control. /// /// The source of the event. /// The instance containing the event data. void HiddenWindow_Loaded(object sender, RoutedEventArgs e) { Title += " " + UIKernel.Instance.ApplicationVersion.ToString(); } } }