diff options
| author | RedShirtMB Mark Linton redshirt linton <RedShirtMB Mark Linton redshirt.linton@gmail.com> | 2012-08-04 17:10:44 -0700 |
|---|---|---|
| committer | RedShirtMB Mark Linton redshirt linton <RedShirtMB Mark Linton redshirt.linton@gmail.com> | 2012-08-04 17:10:44 -0700 |
| commit | 2321bb23d93348a45fbdb4dedbdddf7dc9e31fc3 (patch) | |
| tree | 3ab50eb95650bda8e75e8ae43c74f3636cbabd91 /MediaBrowser.ServerApplication/SplashScreen.xaml.cs | |
| parent | bf0c6ec182134cb2b13ac8ffabc6e1d6397c61e6 (diff) | |
Added initial implimentation of splash screen
Hid MainWindow
Added Tray Icon
Diffstat (limited to 'MediaBrowser.ServerApplication/SplashScreen.xaml.cs')
| -rw-r--r-- | MediaBrowser.ServerApplication/SplashScreen.xaml.cs | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/MediaBrowser.ServerApplication/SplashScreen.xaml.cs b/MediaBrowser.ServerApplication/SplashScreen.xaml.cs new file mode 100644 index 000000000..03bfb8eab --- /dev/null +++ b/MediaBrowser.ServerApplication/SplashScreen.xaml.cs @@ -0,0 +1,29 @@ +using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Shapes;
+
+using MediaBrowser.Model.Progress;
+
+namespace MediaBrowser.ServerApplication
+{
+ /// <summary>
+ /// Interaction logic for SplashScreen.xaml
+ /// </summary>
+ public partial class SplashScreen : Window
+ {
+ public SplashScreen(IProgress<TaskProgress> progress)
+ {
+ InitializeComponent();
+ }
+ }
+}
|
