diff options
| author | LukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com> | 2012-08-25 13:31:58 -0400 |
|---|---|---|
| committer | LukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com> | 2012-08-25 13:31:58 -0400 |
| commit | d032a49c3c1efd06d04c66efd306cfb15248907f (patch) | |
| tree | 07c699eba6cc3ddfeddb97afb2c1ebb369fa6ae2 | |
| parent | fc6b2a7f54e9f20641ad9948036ae4d6cc87f926 (diff) | |
Added a gradient to the splash screen background
| -rw-r--r-- | MediaBrowser.Common/UI/Splash.xaml | 10 |
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"/>
|
