aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MediaBrowser.Common/UI/Splash.xaml10
1 files changed, 7 insertions, 3 deletions
diff --git a/MediaBrowser.Common/UI/Splash.xaml b/MediaBrowser.Common/UI/Splash.xaml
index 8bb6d0aca..cc1881b73 100644
--- a/MediaBrowser.Common/UI/Splash.xaml
+++ b/MediaBrowser.Common/UI/Splash.xaml
@@ -8,9 +8,13 @@
ShowInTaskbar="True"
ResizeMode="NoResize"
WindowStartupLocation="CenterScreen"
- WindowState="Normal"
- Background="Black">
-
+ WindowState="Normal">
+ <Window.Background>
+ <RadialGradientBrush>
+ <GradientStop Color="Black" Offset="1"/>
+ <GradientStop Color="#333333"/>
+ </RadialGradientBrush>
+ </Window.Background>
<Grid Name="splashGrid">
<Image HorizontalAlignment="Left" VerticalAlignment="Top" Height="225" Source="/MediaBrowser.Common;component/Resources/mblogo1000.png" Stretch="Fill" Grid.Row="0"/>
<ProgressBar Name="pbProgress" Minimum="0" Maximum="100" HorizontalAlignment="Left" Height="24" Margin="30,150,30,0" Width="540" Grid.Row="1"/>