diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-20 20:33:05 -0500 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-20 20:33:05 -0500 |
| commit | 767cdc1f6f6a63ce997fc9476911e2c361f9d402 (patch) | |
| tree | 49add55976f895441167c66cfa95e5c7688d18ce /MediaBrowser.UI/HiddenWindow.xaml.cs | |
| parent | 845554722efaed872948a9e0f7202e3ef52f1b6e (diff) | |
Pushing missing changes
Diffstat (limited to 'MediaBrowser.UI/HiddenWindow.xaml.cs')
| -rw-r--r-- | MediaBrowser.UI/HiddenWindow.xaml.cs | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/MediaBrowser.UI/HiddenWindow.xaml.cs b/MediaBrowser.UI/HiddenWindow.xaml.cs new file mode 100644 index 000000000..e2f8f7a37 --- /dev/null +++ b/MediaBrowser.UI/HiddenWindow.xaml.cs @@ -0,0 +1,31 @@ +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(); + } + } +} |
