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.ServerApplication/Controls/MultiItemUpdateNotification.xaml | |
| parent | 845554722efaed872948a9e0f7202e3ef52f1b6e (diff) | |
Pushing missing changes
Diffstat (limited to 'MediaBrowser.ServerApplication/Controls/MultiItemUpdateNotification.xaml')
| -rw-r--r-- | MediaBrowser.ServerApplication/Controls/MultiItemUpdateNotification.xaml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/MediaBrowser.ServerApplication/Controls/MultiItemUpdateNotification.xaml b/MediaBrowser.ServerApplication/Controls/MultiItemUpdateNotification.xaml new file mode 100644 index 000000000..5d3fb785c --- /dev/null +++ b/MediaBrowser.ServerApplication/Controls/MultiItemUpdateNotification.xaml @@ -0,0 +1,37 @@ +<UserControl x:Class="MediaBrowser.ServerApplication.Controls.MultiItemUpdateNotification" + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" + xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" + xmlns:d="http://schemas.microsoft.com/expression/blend/2008" + mc:Ignorable="d" + d:DesignHeight="300" d:DesignWidth="300"> + + <Grid MaxHeight="400" MaxWidth="600" Margin="20"> + <Border BorderThickness="0" Background="#333333"> + <Border.Effect> + <DropShadowEffect BlurRadius="25" ShadowDepth="0"> + + </DropShadowEffect> + </Border.Effect> + </Border> + <Grid> + <Grid.Background> + <LinearGradientBrush SpreadMethod="Reflect" ColorInterpolationMode="SRgbLinearInterpolation" StartPoint="0,0" EndPoint="0,1" > + <GradientStop Color="#ff222222" Offset="0" /> + <GradientStop Color="#ffbbbbbb" Offset="1" /> + </LinearGradientBrush> + </Grid.Background> + + <Grid Margin="20"> + <Grid.RowDefinitions> + <RowDefinition Height="auto"></RowDefinition> + <RowDefinition Height="*"></RowDefinition> + </Grid.RowDefinitions> + + <TextBlock x:Name="header" FontSize="26" Foreground="White" Grid.Row="0"></TextBlock> + + <UniformGrid x:Name="itemsPanel" Columns="4" Margin="0 20 0 0" Grid.Row="1"></UniformGrid> + </Grid> + </Grid> + </Grid> +</UserControl> |
