From 767cdc1f6f6a63ce997fc9476911e2c361f9d402 Mon Sep 17 00:00:00 2001 From: LukePulverenti Date: Wed, 20 Feb 2013 20:33:05 -0500 Subject: Pushing missing changes --- MediaBrowser.UI/HiddenWindow.xaml.cs | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 MediaBrowser.UI/HiddenWindow.xaml.cs (limited to 'MediaBrowser.UI/HiddenWindow.xaml.cs') diff --git a/MediaBrowser.UI/HiddenWindow.xaml.cs b/MediaBrowser.UI/HiddenWindow.xaml.cs new file mode 100644 index 0000000000..e2f8f7a37e --- /dev/null +++ b/MediaBrowser.UI/HiddenWindow.xaml.cs @@ -0,0 +1,31 @@ +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(); + } + } +} -- cgit v1.2.3