From dafa97333cb5950c87fb7be10a39bf2e917da923 Mon Sep 17 00:00:00 2001 From: RedShirtMB Mark Linton redshirt linton Date: Sat, 4 Aug 2012 19:21:38 -0700 Subject: Moved splashscreen to MediaBrowser.Common and adjusted properties. --- MediaBrowser.Common/UI/Splash.xaml | 9 +++++++++ MediaBrowser.Common/UI/Splash.xaml.cs | 29 +++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 MediaBrowser.Common/UI/Splash.xaml create mode 100644 MediaBrowser.Common/UI/Splash.xaml.cs (limited to 'MediaBrowser.Common/UI') diff --git a/MediaBrowser.Common/UI/Splash.xaml b/MediaBrowser.Common/UI/Splash.xaml new file mode 100644 index 0000000000..9bf1c8364c --- /dev/null +++ b/MediaBrowser.Common/UI/Splash.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/MediaBrowser.Common/UI/Splash.xaml.cs b/MediaBrowser.Common/UI/Splash.xaml.cs new file mode 100644 index 0000000000..e136baa191 --- /dev/null +++ b/MediaBrowser.Common/UI/Splash.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.Common.UI +{ + /// + /// Interaction logic for Splash.xaml + /// + public partial class Splash : Window + { + public Splash(IProgress progress) + { + InitializeComponent(); + } + } +} -- cgit v1.2.3